mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 07:21:13 +01:00
4cca1d1e7e
Conflicts: app/controllers/auth/confirmations_controller.rb
13 lines
201 B
Ruby
13 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
|