summaryrefslogtreecommitdiff
path: root/app/controllers/groups/settings/packages_and_registries_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/groups/settings/packages_and_registries_controller.rb')
-rw-r--r--app/controllers/groups/settings/packages_and_registries_controller.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/groups/settings/packages_and_registries_controller.rb b/app/controllers/groups/settings/packages_and_registries_controller.rb
index dbc1e68742b..0135c03026c 100644
--- a/app/controllers/groups/settings/packages_and_registries_controller.rb
+++ b/app/controllers/groups/settings/packages_and_registries_controller.rb
@@ -4,11 +4,18 @@ module Groups
module Settings
class PackagesAndRegistriesController < Groups::ApplicationController
before_action :authorize_admin_group!
+ before_action :verify_packages_enabled!
feature_category :package_registry
def index
end
+
+ private
+
+ def verify_packages_enabled!
+ render_404 unless group.packages_feature_enabled?
+ end
end
end
end