Files
greenlight/app/controllers/landing_controller.rb
2016-10-17 13:45:24 -04:00

7 lines
195 B
Ruby

class LandingController < ApplicationController
def index
@meeting_token = params[:id] || @meeting_token = rand.to_s[2..10]
@meeting_url = helpers.meeting_url(@meeting_token)
end
end