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
Tatuya Kamada
gitlab-ce
Commits
7fcd469e
Commit
7fcd469e
authored
Oct 31, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add subscribable_project to ToggleSubscriptionAction concern
parent
9a2157a6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
app/controllers/concerns/toggle_subscription_action.rb
app/controllers/concerns/toggle_subscription_action.rb
+5
-1
app/controllers/projects/issues_controller.rb
app/controllers/projects/issues_controller.rb
+4
-0
app/controllers/projects/labels_controller.rb
app/controllers/projects/labels_controller.rb
+4
-0
app/controllers/projects/merge_requests_controller.rb
app/controllers/projects/merge_requests_controller.rb
+4
-0
No files found.
app/controllers/concerns/toggle_subscription_action.rb
View file @
7fcd469e
...
...
@@ -4,13 +4,17 @@ module ToggleSubscriptionAction
def
toggle_subscription
return
unless
current_user
subscribable_resource
.
toggle_subscription
(
current_user
)
subscribable_resource
.
toggle_subscription
(
current_user
,
subscribable_project
)
head
:ok
end
private
def
subscribable_project
raise
NotImplementedError
end
def
subscribable_resource
raise
NotImplementedError
end
...
...
app/controllers/projects/issues_controller.rb
View file @
7fcd469e
...
...
@@ -169,6 +169,10 @@ class Projects::IssuesController < Projects::ApplicationController
alias_method
:awardable
,
:issue
alias_method
:spammable
,
:issue
def
subscribable_project
issue
.
project
end
def
authorize_read_issue!
return
render_404
unless
can?
(
current_user
,
:read_issue
,
@issue
)
end
...
...
app/controllers/projects/labels_controller.rb
View file @
7fcd469e
...
...
@@ -125,6 +125,10 @@ class Projects::LabelsController < Projects::ApplicationController
end
alias_method
:subscribable_resource
,
:label
def
subscribable_project
@project
end
def
find_labels
@available_labels
||=
LabelsFinder
.
new
(
current_user
,
project_id:
@project
.
id
).
execute
end
...
...
app/controllers/projects/merge_requests_controller.rb
View file @
7fcd469e
...
...
@@ -473,6 +473,10 @@ class Projects::MergeRequestsController < Projects::ApplicationController
alias_method
:issuable
,
:merge_request
alias_method
:awardable
,
:merge_request
def
subscribable_project
merge_request
.
project
end
def
authorize_update_merge_request!
return
render_404
unless
can?
(
current_user
,
:update_merge_request
,
@merge_request
)
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