diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-11-02 15:10:46 +0100 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-11-02 15:10:46 +0100 |
commit | 64be8d70ae20928df351e495a3442bb6036bc3e7 (patch) | |
tree | 6eb01452391ccfa45d1dbaeae261d118d323bcc1 /config/routes | |
parent | 461c385ebca7ecb52d0b385fd61c856eb395481a (diff) | |
download | gitlab-ce-64be8d70ae20928df351e495a3442bb6036bc3e7.tar.gz |
Improve backend structure of data
Diffstat (limited to 'config/routes')
-rw-r--r-- | config/routes/project.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb index 746c0c46677..a6a7c5e7482 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -190,6 +190,10 @@ constraints(ProjectUrlConstrainer.new) do member do get :status, format: :json + + scope '*application' do + resource :applications, only: [:create] + end end end |