BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
252d3a0c
Commit
252d3a0c
authored
Sep 25, 2012
by
Cyril
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove duplicate before_filter
parent
c3907bef
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
6 deletions
+0
-6
hooks_controller.rb
app/controllers/hooks_controller.rb
+0
-1
issues_controller.rb
app/controllers/issues_controller.rb
+0
-1
labels_controller.rb
app/controllers/labels_controller.rb
+0
-1
merge_requests_controller.rb
app/controllers/merge_requests_controller.rb
+0
-1
milestones_controller.rb
app/controllers/milestones_controller.rb
+0
-1
snippets_controller.rb
app/controllers/snippets_controller.rb
+0
-1
No files found.
app/controllers/hooks_controller.rb
View file @
252d3a0c
class
HooksController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
layout
"project"
...
...
app/controllers/issues_controller.rb
View file @
252d3a0c
class
IssuesController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
before_filter
:module_enabled
before_filter
:issue
,
only:
[
:edit
,
:update
,
:destroy
,
:show
]
...
...
app/controllers/labels_controller.rb
View file @
252d3a0c
class
LabelsController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
before_filter
:module_enabled
...
...
app/controllers/merge_requests_controller.rb
View file @
252d3a0c
class
MergeRequestsController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
before_filter
:module_enabled
before_filter
:merge_request
,
only:
[
:edit
,
:update
,
:destroy
,
:show
,
:commits
,
:diffs
,
:automerge
,
:automerge_check
,
:raw
]
...
...
app/controllers/milestones_controller.rb
View file @
252d3a0c
class
MilestonesController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
before_filter
:module_enabled
before_filter
:milestone
,
only:
[
:edit
,
:update
,
:destroy
,
:show
]
...
...
app/controllers/snippets_controller.rb
View file @
252d3a0c
class
SnippetsController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
before_filter
:snippet
,
only:
[
:show
,
:edit
,
:destroy
,
:update
,
:raw
]
layout
"project"
...
...
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