Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
2d4ba267
Commit
2d4ba267
authored
May 28, 2014
by
Sean Edge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update tags_controller.rb to use CreateTagService.
parent
a8f2977c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
app/controllers/projects/tags_controller.rb
app/controllers/projects/tags_controller.rb
+2
-5
No files found.
app/controllers/projects/tags_controller.rb
View file @
2d4ba267
...
...
@@ -13,11 +13,8 @@ class Projects::TagsController < Projects::ApplicationController
end
def
create
@repository
.
add_tag
(
params
[
:tag_name
],
params
[
:ref
])
if
new_tag
=
@repository
.
find_tag
(
params
[
:tag_name
])
Event
.
create_ref_event
(
@project
,
current_user
,
new_tag
,
'add'
,
'refs/tags'
)
end
@tag
=
CreateTagService
.
new
.
execute
(
@project
,
params
[
:tag_name
],
params
[
:ref
],
current_user
)
redirect_to
project_tags_path
(
@project
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment