Skip to content

Instantly share code, notes, and snippets.

@diegoy
Created June 13, 2017 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegoy/b80972a7dd3e8b27cd85cb42c6f9ee01 to your computer and use it in GitHub Desktop.
Save diegoy/b80972a7dd3e8b27cd85cb42c6f9ee01 to your computer and use it in GitHub Desktop.
class CreateConversationMessage
include Interactor #this is the gem
def call
conv = Conversation.find(context.params[:conversation_id])
conv.messages.create(context.params)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment