polyglot/app/controllers/chat_rooms_controller.rb

11 lines
137 B
Ruby

class ChatRoomsController < ApplicationController
def show
@chat_room = ChatRoom.find(params[:id])
end
def create
end
end