1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/controllers/auth/confirmations_controller.rb

24 lines
479 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-03 07:38:22 -07:00
class Auth::ConfirmationsController < Devise::ConfirmationsController
layout 'auth'
before_action :set_body_classes
skip_before_action :require_functional!
private
def set_body_classes
@body_classes = 'lighter'
end
def after_confirmation_path_for(_resource_name, user)
if user.created_by_application && truthy_param?(:redirect_to_app)
user.created_by_application.redirect_uri
else
super
end
end
2016-10-03 07:38:22 -07:00
end