1993a4449a
Partially addresses #47424.
11 lines
180 B
Ruby
11 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SentryHelper
|
|
def sentry_enabled?
|
|
Gitlab::Sentry.enabled?
|
|
end
|
|
|
|
def sentry_context
|
|
Gitlab::Sentry.context(current_user)
|
|
end
|
|
end
|