diff options
author | Alexis Reigel <mail@koffeinfrei.org> | 2017-07-25 09:40:23 +0200 |
---|---|---|
committer | Alexis Reigel <mail@koffeinfrei.org> | 2017-07-27 15:46:03 +0200 |
commit | eda001565c5afbf6e2eb9b8b5cf4fa9d6525ed71 (patch) | |
tree | 44eb6484077618fa444fb85d4e0e8e6a2914430f /config | |
parent | c4c44c6a1bb892dc17989cef3cc9b6c23fecb2c8 (diff) | |
download | gitlab-ce-eda001565c5afbf6e2eb9b8b5cf4fa9d6525ed71.tar.gz |
fetch gpg signature badges by ajax
Diffstat (limited to 'config')
-rw-r--r-- | config/routes/repository.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes/repository.rb b/config/routes/repository.rb index 11911636fa7..edcf3ddf57b 100644 --- a/config/routes/repository.rb +++ b/config/routes/repository.rb @@ -76,6 +76,8 @@ scope format: false do get '/tree/*id', to: 'tree#show', as: :tree get '/raw/*id', to: 'raw#show', as: :raw get '/blame/*id', to: 'blame#show', as: :blame + + get '/commits/*id/signatures', to: 'commits#signatures', as: :signatures get '/commits/*id', to: 'commits#show', as: :commits post '/create_dir/*id', to: 'tree#create_dir', as: :create_dir |