6 lines
196 B
Ruby
6 lines
196 B
Ruby
class LiveMeetingsController < ApplicationController
|
|
def show
|
|
authorize broadcast = Broadcast.find(params[:broadcast_id])
|
|
@live_meeting_url = broadcast.project.live_meeting_url
|
|
end
|
|
end |