Module: API::Helpers::PerformanceBarHelpers
- Defined in:
- lib/api/helpers/performance_bar_helpers.rb
Instance Method Summary collapse
- #perf_bar_allowed_for_user? ⇒ Boolean
- #perf_bar_cookie_enabled? ⇒ Boolean
- #set_peek_enabled_for_current_request ⇒ Object
Instance Method Details
#perf_bar_allowed_for_user? ⇒ Boolean
14 15 16 17 18 |
# File 'lib/api/helpers/performance_bar_helpers.rb', line 14 def # We cannot use `current_user` here because that method raises an exception when the user # is unauthorized and some API endpoints require that `current_user` is not called. Gitlab::PerformanceBar.allowed_for_user?(find_user_from_sources) end |
#perf_bar_cookie_enabled? ⇒ Boolean
10 11 12 |
# File 'lib/api/helpers/performance_bar_helpers.rb', line 10 def [:perf_bar_enabled] == 'true' end |
#set_peek_enabled_for_current_request ⇒ Object
6 7 8 |
# File 'lib/api/helpers/performance_bar_helpers.rb', line 6 def set_peek_enabled_for_current_request Gitlab::SafeRequestStore.fetch(:peek_enabled) { && } end |