Merge branch '66464-typo-in-release_endpoint_requiremets-constant' into 'master'
Resolve "Typo in RELEASE_ENDPOINT_REQUIREMETS constant" Closes #66464 See merge request gitlab-org/gitlab-ce!32468
This commit is contained in:
commit
5256f01183
2 changed files with 6 additions and 6 deletions
|
@ -5,7 +5,7 @@ module API
|
|||
class Links < Grape::API
|
||||
include PaginationParams
|
||||
|
||||
RELEASE_ENDPOINT_REQUIREMETS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS
|
||||
RELEASE_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS
|
||||
.merge(tag_name: API::NO_SLASH_URL_PART_REGEX)
|
||||
|
||||
before { authorize! :read_release, user_project }
|
||||
|
@ -17,7 +17,7 @@ module API
|
|||
params do
|
||||
requires :tag_name, type: String, desc: 'The name of the tag', as: :tag
|
||||
end
|
||||
resource 'releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMETS do
|
||||
resource 'releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMENTS do
|
||||
resource :assets do
|
||||
desc 'Get a list of links of a release' do
|
||||
detail 'This feature was introduced in GitLab 11.7.'
|
||||
|
|
|
@ -4,7 +4,7 @@ module API
|
|||
class Releases < Grape::API
|
||||
include PaginationParams
|
||||
|
||||
RELEASE_ENDPOINT_REQUIREMETS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS
|
||||
RELEASE_ENDPOINT_REQUIREMENTS = API::NAMESPACE_OR_PROJECT_REQUIREMENTS
|
||||
.merge(tag_name: API::NO_SLASH_URL_PART_REGEX)
|
||||
|
||||
before { authorize_read_releases! }
|
||||
|
@ -33,7 +33,7 @@ module API
|
|||
params do
|
||||
requires :tag_name, type: String, desc: 'The name of the tag', as: :tag
|
||||
end
|
||||
get ':id/releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMETS do
|
||||
get ':id/releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMENTS do
|
||||
authorize_download_code!
|
||||
|
||||
present release, with: Entities::Release, current_user: current_user
|
||||
|
@ -82,7 +82,7 @@ module API
|
|||
optional :released_at, type: DateTime, desc: 'The date when the release will be/was ready.'
|
||||
optional :milestone, type: String, desc: 'The title of the related milestone'
|
||||
end
|
||||
put ':id/releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMETS do
|
||||
put ':id/releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMENTS do
|
||||
authorize_update_release!
|
||||
|
||||
result = ::Releases::UpdateService
|
||||
|
@ -103,7 +103,7 @@ module API
|
|||
params do
|
||||
requires :tag_name, type: String, desc: 'The name of the tag', as: :tag
|
||||
end
|
||||
delete ':id/releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMETS do
|
||||
delete ':id/releases/:tag_name', requirements: RELEASE_ENDPOINT_REQUIREMENTS do
|
||||
authorize_destroy_release!
|
||||
|
||||
result = ::Releases::DestroyService
|
||||
|
|
Loading…
Reference in a new issue