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
iv
gitlab-ce
Commits
935b6ae6
Commit
935b6ae6
authored
Feb 04, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Internal API
parent
6f7ccea6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
lib/api.rb
lib/api.rb
+1
-0
lib/api/internal.rb
lib/api/internal.rb
+24
-0
No files found.
lib/api.rb
View file @
935b6ae6
...
@@ -19,5 +19,6 @@ module Gitlab
...
@@ -19,5 +19,6 @@ module Gitlab
mount
Session
mount
Session
mount
MergeRequests
mount
MergeRequests
mount
Notes
mount
Notes
mount
Internal
end
end
end
end
lib/api/internal.rb
0 → 100644
View file @
935b6ae6
module
Gitlab
# Access API
class
Internal
<
Grape
::
API
get
"/allowed"
do
user
=
User
.
find_by_username
(
params
[
:username
])
project
=
Project
.
find_with_namespace
(
params
[
:project
])
action
=
case
params
[
:action
]
when
'git-upload-pack'
then
:download_code
when
'git-receive-pack'
then
if
project
.
protected_branch?
(
params
[
:ref
])
:push_code_to_protected_branches
else
:push_code
end
end
user
.
can?
(
action
,
project
)
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