blob: 19de38ac52db6b8daccc4756e653ead6be001533 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
module SentryHelper
def sentry_enabled?
Gitlab::Sentry.enabled?
end
def sentry_context
Gitlab::Sentry.context(current_user)
end
def sentry_dsn_public
sentry_dsn = ApplicationSetting.current.sentry_dsn
return unless sentry_dsn
uri = URI.parse(sentry_dsn)
uri.password = nil
uri.to_s
end
end
|