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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
03228cb5
Commit
03228cb5
authored
Jun 20, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport check_project_feature_available! from EE
parent
4b0b2f15
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
app/controllers/projects/application_controller.rb
app/controllers/projects/application_controller.rb
+8
-1
No files found.
app/controllers/projects/application_controller.rb
View file @
03228cb5
...
...
@@ -53,9 +53,16 @@ class Projects::ApplicationController < ApplicationController
end
end
def
check_project_feature_available!
(
feature
)
return
render_404
unless
project
.
feature_available?
(
feature
,
current_user
)
end
def
method_missing
(
method_sym
,
*
arguments
,
&
block
)
if
method_sym
.
to_s
=~
/\Aauthorize_(.*)!\z/
case
method_sym
.
to_s
when
/\Aauthorize_(.*)!\z/
authorize_action!
(
$1
.
to_sym
)
when
/\Acheck_(.*)_available!\z/
check_project_feature_available!
(
$1
.
to_sym
)
else
super
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