mirror of
https://github.com/lingble/chatwoot.git
synced 2025-12-13 17:27:11 +00:00
- This PR adds a UI to validate the response source quality quickly. It also helps to test with sample questions and update responses in the database when missing. Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
9 lines
281 B
Ruby
9 lines
281 B
Ruby
class SuperAdmin::EnterpriseBaseController < SuperAdmin::ApplicationController
|
|
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
|