This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/auth/confirmations_controller.rb

29 lines
547 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-03 16:38:22 +02:00
class Auth::ConfirmationsController < Devise::ConfirmationsController
layout 'auth'
before_action :set_body_classes
2017-11-21 07:13:37 +01:00
before_action :set_pack
skip_before_action :require_functional!
private
2018-06-21 23:48:54 +02:00
def set_pack
use_pack 'auth'
end
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 16:38:22 +02:00
end