This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/app/controllers/rooms_controller.rb

10 lines
161 B
Ruby
Raw Normal View History

2018-05-07 16:06:01 -04:00
class RoomsController < ApplicationController
before_action :verify_room_ownership
# GET /rooms/:room_uid
def index
@meeting = Meeting.new
end
end