10 lines
189 B
Ruby
10 lines
189 B
Ruby
class ConversationsController < ApplicationController
|
|
def create
|
|
Current.user.start_or_continue_conversation
|
|
end
|
|
|
|
def show
|
|
@conversation = Current.user.conversation
|
|
end
|
|
end
|