mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
class Api::V1::Accounts::Kbase::BaseController < Api::V1::Accounts::BaseController
|
|
before_action :portal
|
|
|
|
private
|
|
|
|
def portal
|
|
@portal ||= Current.account.kbase_portals.find_by(slug: params[:portal_id])
|
|
end
|
|
end
|