2020-06-07 08:28:05 +00:00
|
|
|
class Api::V1::Accounts::Conversations::BaseController < Api::V1::Accounts::BaseController
|
2022-03-16 08:24:18 +00:00
|
|
|
include EnsureCurrentAccountHelper
|
2020-06-07 08:28:05 +00:00
|
|
|
before_action :conversation
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def conversation
|
2022-05-06 09:20:55 +00:00
|
|
|
@conversation ||= Current.account.conversations.find_by!(display_id: params[:conversation_id])
|
2021-06-11 06:14:31 +00:00
|
|
|
authorize @conversation.inbox, :show?
|
2020-06-07 08:28:05 +00:00
|
|
|
end
|
|
|
|
end
|