* chore: Add sla_events to push_event_data * chore: Return SLA details in the API * chore: feature lock sla push event data * Update _conversation.json.jbuilder * chore: rubocop fixes
13 lines
315 B
Ruby
13 lines
315 B
Ruby
module Enterprise::Concerns::ApplicationControllerConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
before_action :prepend_view_paths
|
|
end
|
|
|
|
# Prepend the view path to the enterprise/app/views won't be available by default
|
|
def prepend_view_paths
|
|
prepend_view_path 'enterprise/app/views/'
|
|
end
|
|
end
|