summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/admin/hooks_controller.rb1
-rw-r--r--app/controllers/concerns/web_hooks/hook_actions.rb1
-rw-r--r--app/controllers/concerns/web_hooks/hook_log_actions.rb2
-rw-r--r--app/controllers/projects/hooks_controller.rb1
4 files changed, 2 insertions, 3 deletions
diff --git a/app/controllers/admin/hooks_controller.rb b/app/controllers/admin/hooks_controller.rb
index 57ef75f12e9..c6c0e7eac90 100644
--- a/app/controllers/admin/hooks_controller.rb
+++ b/app/controllers/admin/hooks_controller.rb
@@ -3,7 +3,6 @@
class Admin::HooksController < Admin::ApplicationController
include ::WebHooks::HookActions
- feature_category :integrations
urgency :low, [:test]
def test
diff --git a/app/controllers/concerns/web_hooks/hook_actions.rb b/app/controllers/concerns/web_hooks/hook_actions.rb
index ae971b7bc95..076347922c8 100644
--- a/app/controllers/concerns/web_hooks/hook_actions.rb
+++ b/app/controllers/concerns/web_hooks/hook_actions.rb
@@ -9,6 +9,7 @@ module WebHooks
attr_writer :hooks, :hook
before_action :hook_logs, only: :edit
+ feature_category :webhooks
end
def index
diff --git a/app/controllers/concerns/web_hooks/hook_log_actions.rb b/app/controllers/concerns/web_hooks/hook_log_actions.rb
index f3378d7c857..321cee5a452 100644
--- a/app/controllers/concerns/web_hooks/hook_log_actions.rb
+++ b/app/controllers/concerns/web_hooks/hook_log_actions.rb
@@ -11,7 +11,7 @@ module WebHooks
respond_to :html
- feature_category :integrations
+ feature_category :webhooks
urgency :low, [:retry]
end
diff --git a/app/controllers/projects/hooks_controller.rb b/app/controllers/projects/hooks_controller.rb
index 570fe74f31f..412ed529446 100644
--- a/app/controllers/projects/hooks_controller.rb
+++ b/app/controllers/projects/hooks_controller.rb
@@ -12,7 +12,6 @@ class Projects::HooksController < Projects::ApplicationController
layout "project_settings"
- feature_category :integrations
urgency :low, [:test]
def test