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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
5e1ef575
Commit
5e1ef575
authored
Sep 17, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CommitController
parent
ed26ecae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
app/controllers/commit_controller.rb
app/controllers/commit_controller.rb
+33
-0
No files found.
app/controllers/commit_controller.rb
0 → 100644
View file @
5e1ef575
# Controller for a specific Commit
#
# Not to be confused with CommitsController, plural.
class
CommitController
<
ApplicationController
before_filter
:project
layout
"project"
# Authorize
before_filter
:add_project_abilities
before_filter
:authorize_read_project!
before_filter
:authorize_code_access!
before_filter
:require_non_empty_project
def
show
result
=
CommitLoad
.
new
(
project
,
current_user
,
params
).
execute
@commit
=
result
[
:commit
]
if
@commit
@suppress_diff
=
result
[
:suppress_diff
]
@note
=
result
[
:note
]
@line_notes
=
result
[
:line_notes
]
@notes_count
=
result
[
:notes_count
]
@comments_allowed
=
true
else
return
git_not_found!
end
if
result
[
:status
]
==
:huge_commit
render
"huge_commit"
and
return
end
end
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