45e43b0b89
- Add endpoint which lists inboxes through which a contact can be contacted - Conversation creation API auto-creates contact_inbox for specific channels [ Twilio, email, api] - Ability to send the initial message payload along with the conversation creation - Fixes #1678 ( issue saving additional attributes for conversation )
34 lines
833 B
Ruby
34 lines
833 B
Ruby
class Api::V1::Accounts::Conversations::MessagesController < Api::V1::Accounts::Conversations::BaseController
|
|
def index
|
|
@messages = message_finder.perform
|
|
end
|
|
|
|
def create
|
|
user = Current.user || @resource
|
|
mb = Messages::MessageBuilder.new(user, @conversation, params)
|
|
@message = mb.perform
|
|
rescue StandardError => e
|
|
render_could_not_create_error(e.message)
|
|
end
|
|
|
|
def destroy
|
|
ActiveRecord::Base.transaction do
|
|
message.update!(content: I18n.t('conversations.messages.deleted'), deleted: true)
|
|
message.attachments.destroy_all
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def message
|
|
@message ||= @conversation.messages.find(permitted_params[:id])
|
|
end
|
|
|
|
def message_finder
|
|
@message_finder ||= MessageFinder.new(@conversation, params)
|
|
end
|
|
|
|
def permitted_params
|
|
params.permit(:id)
|
|
end
|
|
end
|