Class: Chat::MessagesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/chat/messages_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



8
9
10
11
12
# File 'app/controllers/chat/messages_controller.rb', line 8

def create
  @conversation.messages.create(message_params)

  head :ok
end

#destroyObject



14
15
16
# File 'app/controllers/chat/messages_controller.rb', line 14

def destroy
  @conversation.destroy
end