diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-12 14:28:12 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-12 14:28:12 +0200 |
commit | dd501aa7a79644919ba0c47d1ed764b6db768c8d (patch) | |
tree | c861b365ef67e6a07b9a3b0d6608fa8cd2301c6c /config | |
parent | f1ecf53c1e55fbbc66cb2d7d12fb411cbfc2ace8 (diff) | |
download | gitlab-ce-dd501aa7a79644919ba0c47d1ed764b6db768c8d.tar.gz |
Broadcast messages scaffold in admin area
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 58bbd2b650e..d41a07872e4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -86,6 +86,7 @@ Gitlab::Application.routes.draw do get :test end + resources :broadcast_messages, only: [:index, :create] resource :logs, only: [:show] resource :background_jobs, controller: 'background_jobs', only: [:show] resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show] |