diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-04-26 13:28:24 +0200 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-05-04 13:52:55 +0200 |
commit | 3629dc338fbe6c351ce89a94caa4c238965ee33a (patch) | |
tree | 65263132237dc471c869b05b9071b773b7404924 /config | |
parent | 17b25bd263edaae70d5dae5fb035f5c28f9bb0cd (diff) | |
download | gitlab-ce-3629dc338fbe6c351ce89a94caa4c238965ee33a.tar.gz |
Display terms to a user
When terms are present, they can be viewed on `/-/users/terms`.
Diffstat (limited to 'config')
-rw-r--r-- | config/routes/user.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/routes/user.rb b/config/routes/user.rb index f8677693fab..bc7df5e7584 100644 --- a/config/routes/user.rb +++ b/config/routes/user.rb @@ -27,6 +27,13 @@ devise_scope :user do get '/users/almost_there' => 'confirmations#almost_there' end +scope '-/users', module: :users do + resources :terms, only: [:index] do + post :accept, on: :member + post :decline, on: :member + end +end + scope(constraints: { username: Gitlab::PathRegex.root_namespace_route_regex }) do scope(path: 'users/:username', as: :user, |