Files
greenlight/app/controllers/rooms_controller.rb
2018-05-07 16:06:01 -04:00

10 lines
161 B
Ruby

class RoomsController < ApplicationController
before_action :verify_room_ownership
# GET /rooms/:room_uid
def index
@meeting = Meeting.new
end
end