Commit e8f1331f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'internal-api-post' into 'master'

Internal api post

See merge request !1059
parents 7a0e1c72 cf53b361
...@@ -12,7 +12,9 @@ module API ...@@ -12,7 +12,9 @@ module API
# ref - branch name # ref - branch name
# forced_push - forced_push # forced_push - forced_push
# #
get "/allowed" do post "/allowed" do
status 200
# Check for *.wiki repositories. # Check for *.wiki repositories.
# Strip out the .wiki from the pathname before finding the # Strip out the .wiki from the pathname before finding the
# project. This applies the correct project permissions to # project. This applies the correct project permissions to
......
...@@ -155,7 +155,7 @@ describe API::API, api: true do ...@@ -155,7 +155,7 @@ describe API::API, api: true do
end end
def pull(key, project) def pull(key, project)
get( post(
api("/internal/allowed"), api("/internal/allowed"),
key_id: key.id, key_id: key.id,
project: project.path_with_namespace, project: project.path_with_namespace,
...@@ -164,7 +164,7 @@ describe API::API, api: true do ...@@ -164,7 +164,7 @@ describe API::API, api: true do
end end
def push(key, project) def push(key, project)
get( post(
api("/internal/allowed"), api("/internal/allowed"),
changes: 'd14d6c0abdd253381df51a723d58691b2ee1ab08 570e7b2abdd848b95f2f578043fc23bd6f6fd24d refs/heads/master', changes: 'd14d6c0abdd253381df51a723d58691b2ee1ab08 570e7b2abdd848b95f2f578043fc23bd6f6fd24d refs/heads/master',
key_id: key.id, key_id: key.id,
...@@ -174,7 +174,7 @@ describe API::API, api: true do ...@@ -174,7 +174,7 @@ describe API::API, api: true do
end end
def archive(key, project) def archive(key, project)
get( post(
api("/internal/allowed"), api("/internal/allowed"),
ref: 'master', ref: 'master',
key_id: key.id, key_id: key.id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment