mastodon/app/controllers/auth/confirmations_controller.rb

14 lines
201 B
Ruby

# frozen_string_literal: true
class Auth::ConfirmationsController < Devise::ConfirmationsController
layout 'auth'
before_action :set_pack
private
def set_pack
use_pack 'auth'
end
end