chore: Sentry issues (#4623)

Fixes various issues reported on sentry

- Twilio channel creation validation errors
- Room Channel error with nil class
- Webhook Uri exception
This commit is contained in:
Sojan Jose
2022-05-06 14:50:55 +05:30
committed by GitHub
parent 4f9d41962a
commit 8d2b719dc1
8 changed files with 9 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ class Api::V1::Accounts::Conversations::BaseController < Api::V1::Accounts::Base
private
def conversation
@conversation ||= Current.account.conversations.find_by(display_id: params[:conversation_id])
@conversation ||= Current.account.conversations.find_by!(display_id: params[:conversation_id])
authorize @conversation.inbox, :show?
end
end