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
respond_to :html
feature_category :integrations
urgency :low, [:retry]
def show
end
......
......@@ -6,6 +6,7 @@ class Admin::HooksController < Admin::ApplicationController
before_action :hook_logs, only: :edit
feature_category :integrations
urgency :low, [:test]
def index
@hooks = SystemHook.all
......
......@@ -8,6 +8,8 @@ module IntegrationsActions
include IntegrationsHelper
before_action :integration, only: [:edit, :update, :overrides, :test]
urgency :low, [:test]
end
def edit
......
......@@ -13,6 +13,7 @@ class Projects::HookLogsController < Projects::ApplicationController
layout 'project_settings'
feature_category :integrations
urgency :low, [:retry]
def show
end
......
......@@ -13,6 +13,7 @@ class Projects::HooksController < Projects::ApplicationController
layout "project_settings"
feature_category :integrations
urgency :low, [:test]
def index
@hooks = @project.hooks
......
......@@ -18,6 +18,7 @@ class Projects::ServicesController < Projects::ApplicationController
layout "project_settings"
feature_category :integrations
urgency :low, [:test]
def edit
end
......
......@@ -15,6 +15,7 @@ class Groups::HooksController < Groups::ApplicationController
layout 'group_settings'
feature_category :integrations
urgency :low, [:test]
def index
@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