forked from External/greenlight
10 lines
161 B
Ruby
10 lines
161 B
Ruby
class RoomsController < ApplicationController
|
|
|
|
before_action :verify_room_ownership
|
|
|
|
# GET /rooms/:room_uid
|
|
def index
|
|
@meeting = Meeting.new
|
|
end
|
|
end
|