about summary refs log tree commit diff
path: root/app/controllers/auth/confirmations_controller.rb
blob: 72b8e9dd873aeee70e23a7de796d3d2ee14903d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class Auth::ConfirmationsController < Devise::ConfirmationsController
  layout 'auth'

  before_action :set_pack

  private

  def set_pack
    use_pack 'auth'
  end
end