diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-12-31 17:55:14 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-01-13 11:42:15 -0500 |
commit | 00e8700433b3b1ad11252448af5be58913539d85 (patch) | |
tree | b506bc61c351ecbfa3a0c4c468911cf6374b1ba3 /config | |
parent | 540ae3c3658d051f852b2c10fa61c557521196e1 (diff) | |
download | gitlab-ce-00e8700433b3b1ad11252448af5be58913539d85.tar.gz |
Broadcast Messages can now be edited
Closes #3046
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 3d5c70987c8..05d6ff1e884 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -219,7 +219,7 @@ Rails.application.routes.draw do get :test end - resources :broadcast_messages, only: [:index, :create, :destroy] + resources :broadcast_messages, only: [:index, :edit, :create, :update, :destroy] resource :logs, only: [:show] resource :background_jobs, controller: 'background_jobs', only: [:show] |