forked from External/greenlight
sessions and fixes
This commit is contained in:
@ -1,9 +1,16 @@
|
||||
class MainController < ApplicationController
|
||||
|
||||
before_action :redirect_to_room
|
||||
|
||||
# GET /
|
||||
def index
|
||||
@meeting = Meeting.new
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def redirect_to_room
|
||||
# If the user is logged in already, move them along to their room.
|
||||
redirect_to room_path(current_user.room.uid) if current_user
|
||||
end
|
||||
|
||||
end
|
||||
|
Reference in New Issue
Block a user