diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2018-09-03 13:16:23 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-09-03 13:16:23 +0000 |
commit | 743add978aafa43862867a89b00a04e888199947 (patch) | |
tree | e2ff2db449f186d5c2dcb9da055d75851af6ab5a /app/controllers/groups | |
parent | c0625e5de1fe491675aadf825fdb9e976f089409 (diff) | |
download | gitlab-ce-743add978aafa43862867a89b00a04e888199947.tar.gz |
Move badge settings to general settings
Diffstat (limited to 'app/controllers/groups')
-rw-r--r-- | app/controllers/groups/settings/badges_controller.rb | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/app/controllers/groups/settings/badges_controller.rb b/app/controllers/groups/settings/badges_controller.rb deleted file mode 100644 index ccbd0a3bc02..00000000000 --- a/app/controllers/groups/settings/badges_controller.rb +++ /dev/null @@ -1,13 +0,0 @@ -module Groups - module Settings - class BadgesController < Groups::ApplicationController - include API::Helpers::RelatedResourcesHelpers - - before_action :authorize_admin_group! - - def index - @badge_api_endpoint = expose_url(api_v4_groups_badges_path(id: @group.id)) - end - end - end -end |