mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 02:32:29 +00:00
Fixes: https://linear.app/chatwoot/issue/CW-1613/sla-api Co-authored-by: Sojan Jose <sojan@pepalo.com>
9 lines
292 B
Ruby
9 lines
292 B
Ruby
class Api::V1::Accounts::EnterpriseAccountsController < Api::V1::Accounts::BaseController
|
|
before_action :prepend_view_paths
|
|
|
|
# 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
|