mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
Fixes various issues reported on sentry - Twilio channel creation validation errors - Room Channel error with nil class - Webhook Uri exception
12 lines
340 B
Ruby
12 lines
340 B
Ruby
class Api::V1::Accounts::Conversations::BaseController < Api::V1::Accounts::BaseController
|
|
include EnsureCurrentAccountHelper
|
|
before_action :conversation
|
|
|
|
private
|
|
|
|
def conversation
|
|
@conversation ||= Current.account.conversations.find_by!(display_id: params[:conversation_id])
|
|
authorize @conversation.inbox, :show?
|
|
end
|
|
end
|