15 lines
308 B
Ruby
15 lines
308 B
Ruby
class Public::CastingCallsController < Public::BaseController
|
|
skip_after_action :verify_authorized
|
|
before_action :set_casting_call, only: [:show]
|
|
|
|
def show
|
|
render layout: 'application'
|
|
end
|
|
|
|
private
|
|
|
|
def set_casting_call
|
|
@casting_call = CastingCall.find_by_token(params[:token])
|
|
end
|
|
end
|