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
Léo-Paul Géneau
gitlab-ce
Commits
5e35f216
Commit
5e35f216
authored
Jul 29, 2013
by
Jakub Zienkiewicz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow all git-upload-* commands for deploy keys
parent
79bea312
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
1 deletion
+37
-1
lib/api/internal.rb
lib/api/internal.rb
+1
-1
spec/requests/api/internal_spec.rb
spec/requests/api/internal_spec.rb
+36
-0
No files found.
lib/api/internal.rb
View file @
5e35f216
...
@@ -26,7 +26,7 @@ module API
...
@@ -26,7 +26,7 @@ module API
if
key
.
is_a?
DeployKey
if
key
.
is_a?
DeployKey
key
.
projects
.
include?
(
project
)
&&
git_cmd
==
'git-upload-pack'
key
.
projects
.
include?
(
project
)
&&
git_cmd
.
starts_with?
(
'git-upload-'
)
else
else
user
=
key
.
user
user
=
key
.
user
...
...
spec/requests/api/internal_spec.rb
View file @
5e35f216
...
@@ -100,6 +100,32 @@ describe API::API do
...
@@ -100,6 +100,32 @@ describe API::API do
end
end
end
end
end
end
context
"deploy key"
do
let
(
:key
)
{
create
(
:deploy_key
)
}
context
"added to project"
do
before
do
key
.
projects
<<
project
end
it
do
archive
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'true'
end
end
context
"not added to project"
do
it
do
archive
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
end
end
end
end
end
def
pull
(
key
,
project
)
def
pull
(
key
,
project
)
...
@@ -121,4 +147,14 @@ describe API::API do
...
@@ -121,4 +147,14 @@ describe API::API do
action:
'git-receive-pack'
action:
'git-receive-pack'
)
)
end
end
def
archive
(
key
,
project
)
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-upload-archive'
)
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