Commit 28a64adf authored by Bob Van Landuyt's avatar Bob Van Landuyt

Merge branch 'djensen-set-custom-apdex-sli-for-audit-events' into 'master'

Set low custom apdex for Audit Events

See merge request gitlab-org/gitlab!74942
parents 560d4286 6400bba9
......@@ -14,6 +14,8 @@ class Groups::AuditEventsController < Groups::ApplicationController
feature_category :audit_events
urgency :low
def index
@is_last_page = events.last_page?
@events = AuditEventSerializer.new.represent(events)
......
......@@ -13,6 +13,8 @@ class Projects::AuditEventsController < Projects::ApplicationController
feature_category :audit_events
urgency :low
def index
@is_last_page = events.last_page?
@events = AuditEventSerializer.new.represent(events)
......
......@@ -4,6 +4,8 @@ module API
class AuditEvents < ::API::Base
include ::API::PaginationParams
urgency :low
feature_category :audit_events
before do
......
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