534acfbf96
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
10 lines
302 B
Ruby
10 lines
302 B
Ruby
class Api::V1::Accounts::Conversations::BaseController < Api::V1::Accounts::BaseController
|
|
before_action :conversation
|
|
|
|
private
|
|
|
|
def conversation
|
|
@conversation ||= Current.account.conversations.find_by(display_id: params[:conversation_id])
|
|
authorize @conversation.inbox, :show?
|
|
end
|
|
end
|