diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-09-03 16:09:59 -0500 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-09-03 16:09:59 -0500 |
commit | b623807682022a54344d8213d6f1c902be6ade37 (patch) | |
tree | 478ee3a25d67cb452aac09cfd42967fcfc7c22b9 /lib/api/variables.rb | |
parent | 28060caa0ade7566a38e3ed17f2db8bf9116dc1b (diff) | |
parent | 81002745184df28fc9d969afc524986279c653bb (diff) | |
download | gitlab-ce-b623807682022a54344d8213d6f1c902be6ade37.tar.gz |
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
Diffstat (limited to 'lib/api/variables.rb')
-rw-r--r-- | lib/api/variables.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/variables.rb b/lib/api/variables.rb index da71787abab..d08876ae1b9 100644 --- a/lib/api/variables.rb +++ b/lib/api/variables.rb @@ -9,7 +9,7 @@ module API requires :id, type: String, desc: 'The ID of a project' end - resource :projects, requirements: { id: %r{[^/]+} } do + resource :projects, requirements: API::PROJECT_ENDPOINT_REQUIREMENTS do desc 'Get project variables' do success Entities::Variable end |