Chatwoot/app/presenters/agent_bot_presenter.rb
2021-11-27 00:48:46 +05:30

7 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