diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2016-03-11 18:37:46 +0100 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2016-03-11 18:37:46 +0100 |
commit | 746ac56b6f92991bc15d3cd787094b9555825ac3 (patch) | |
tree | c8f3db069e1f668ab18b92762211cc39954ce6a7 /config | |
parent | ea5f4cae53eb571b250fcbaa3649cefe3083a636 (diff) | |
download | gitlab-ce-746ac56b6f92991bc15d3cd787094b9555825ac3.tar.gz |
Add functionality to setup share of project with group via project settings
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index a918b5bd3f0..a0e0cc87f51 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -701,6 +701,8 @@ Rails.application.routes.draw do end end + resources :group_links, only: [:index, :create, :destroy], constraints: { id: /\d+/ } + resources :notes, only: [:index, :create, :destroy, :update], constraints: { id: /\d+/ } do member do delete :delete_attachment |