3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'app/controllers/devise_token_auth/confirmations_controller.rb', line 3
def show
@user = resource_class.confirm_by_token(params[:confirmation_token])
if @user and @user.id
client_id = SecureRandom.urlsafe_base64(nil, false)
token = SecureRandom.urlsafe_base64(nil, false)
token_hash = BCrypt::Password.create(token)
expiry = (Time.now + DeviseTokenAuth.token_lifespan).to_i
@user.tokens[client_id] = {
token: token_hash,
expiry: expiry
}
@user.save!
redirect_to(@user.build_auth_url(params[:redirect_url], {
token: token,
client_id: client_id,
account_confirmation_success: true,
config: params[:config]
}))
else
raise ActionController::RoutingError.new('Not Found')
end
end
|