mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-07-11 01:39:12 +00:00
11 lines
137 B
Ruby
11 lines
137 B
Ruby
class ChatRoomsController < ApplicationController
|
|
|
|
def show
|
|
@chat_room = ChatRoom.find(params[:id])
|
|
end
|
|
|
|
def create
|
|
|
|
end
|
|
end
|