Commit 421703af authored by Bob Van Landuyt's avatar Bob Van Landuyt

Merge branch '343602-integrations-apdex' into 'master'

Update integrations endpoint custom apdex targets

See merge request gitlab-org/gitlab!73040
parents cc9e0ddd 9eb27140
...@@ -9,6 +9,7 @@ class Admin::HookLogsController < Admin::ApplicationController ...@@ -9,6 +9,7 @@ class Admin::HookLogsController < Admin::ApplicationController
respond_to :html respond_to :html
feature_category :integrations feature_category :integrations
urgency :low, [:retry]
def show def show
end end
......
...@@ -6,6 +6,7 @@ class Admin::HooksController < Admin::ApplicationController ...@@ -6,6 +6,7 @@ class Admin::HooksController < Admin::ApplicationController
before_action :hook_logs, only: :edit before_action :hook_logs, only: :edit
feature_category :integrations feature_category :integrations
urgency :low, [:test]
def index def index
@hooks = SystemHook.all @hooks = SystemHook.all
......
...@@ -8,6 +8,8 @@ module IntegrationsActions ...@@ -8,6 +8,8 @@ module IntegrationsActions
include IntegrationsHelper include IntegrationsHelper
before_action :integration, only: [:edit, :update, :overrides, :test] before_action :integration, only: [:edit, :update, :overrides, :test]
urgency :low, [:test]
end end
def edit def edit
......
...@@ -13,6 +13,7 @@ class Projects::HookLogsController < Projects::ApplicationController ...@@ -13,6 +13,7 @@ class Projects::HookLogsController < Projects::ApplicationController
layout 'project_settings' layout 'project_settings'
feature_category :integrations feature_category :integrations
urgency :low, [:retry]
def show def show
end end
......
...@@ -13,6 +13,7 @@ class Projects::HooksController < Projects::ApplicationController ...@@ -13,6 +13,7 @@ class Projects::HooksController < Projects::ApplicationController
layout "project_settings" layout "project_settings"
feature_category :integrations feature_category :integrations
urgency :low, [:test]
def index def index
@hooks = @project.hooks @hooks = @project.hooks
......
...@@ -18,6 +18,7 @@ class Projects::ServicesController < Projects::ApplicationController ...@@ -18,6 +18,7 @@ class Projects::ServicesController < Projects::ApplicationController
layout "project_settings" layout "project_settings"
feature_category :integrations feature_category :integrations
urgency :low, [:test]
def edit def edit
end end
......
...@@ -15,6 +15,7 @@ class Groups::HooksController < Groups::ApplicationController ...@@ -15,6 +15,7 @@ class Groups::HooksController < Groups::ApplicationController
layout 'group_settings' layout 'group_settings'
feature_category :integrations feature_category :integrations
urgency :low, [:test]
def index def index
@hooks = @group.hooks @hooks = @group.hooks
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment