6 lines
180 B
Ruby
6 lines
180 B
Ruby
class ZoomMeetingsController < ApplicationController
|
|
def show
|
|
authorize broadcast = Broadcast.find(params[:broadcast_id])
|
|
redirect_to broadcast.zoom_meeting_url
|
|
end
|
|
end |