mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-28 21:01:02 +08:00
8 lines
162 B
Ruby
8 lines
162 B
Ruby
class AgentBotPresenter < SimpleDelegator
|
|
def access_token
|
|
return if account_id.blank?
|
|
|
|
Current.account.id == account_id ? super&.token : nil
|
|
end
|
|
end
|