Module: Layered::Assistant::StoppableResponse

Included in:
ConversationsController, Panel::ConversationsController, Public::ConversationsController, Public::Panel::ConversationsController
Defined in:
app/controllers/concerns/layered/assistant/stoppable_response.rb

Instance Method Summary collapse

Instance Method Details

#stopObject



4
5
6
7
8
9
10
# File 'app/controllers/concerns/layered/assistant/stoppable_response.rb', line 4

def stop
  if @conversation.stop_response!
    head :ok
  else
    head :no_content
  end
end