Implemented join to BBB first approach

This commit is contained in:
jfederico
2016-10-17 18:36:56 -04:00
parent 682cbadbf0
commit f725b7f1bc
19 changed files with 182 additions and 10 deletions

View File

@ -1,6 +1,8 @@
class LandingController < ApplicationController
include LandingHelper
def index
@meeting_token = params[:id] || @meeting_token = rand.to_s[2..10]
@meeting_url = helpers.meeting_url(@meeting_token)
@meeting_url = meeting_url(@meeting_token)
end
end