polyglot/app/controllers/chat_rooms_controller.rb

11 lines
137 B
Ruby
Raw Normal View History

2018-08-29 13:09:12 +00:00
class ChatRoomsController < ApplicationController
def show
@chat_room = ChatRoom.find(params[:id])
end
2018-08-29 13:09:12 +00:00
def create
end
end