Sha256: c5617d6dc58903b154985779ab714189286efb429e572d62ca4c0571956e9bc3
Contents?: true
Size: 1.53 KB
Versions: 6
Compression:
Stored size: 1.53 KB
Contents
# frozen_string_literal: true module Overrides class PasswordsController < DeviseJwtAuth::PasswordsController OVERRIDE_PROOF = '(^^,)'.freeze # this is where users arrive after visiting the email confirmation link def edit @resource = resource_class.reset_password_by_token( reset_password_token: resource_params[:reset_password_token] ) if @resource && @resource.id # token = @resource.create_token # ensure that user is confirmed @resource.skip_confirmation! unless @resource.confirmed_at @resource.save! update_refresh_token_cookie redirect_header_options = { override_proof: OVERRIDE_PROOF, reset_password: true } redirect_headers = @resource.create_named_token_pair. merge(redirect_header_options) redirect_to_link = DeviseJwtAuth::Url.generate(params[:redirect_url], redirect_headers) redirect_to redirect_to_link # redirect_header_options = { # override_proof: OVERRIDE_PROOF, # reset_password: true # } # redirect_headers = build_redirect_headers(token.token, # token.client, # redirect_header_options) # redirect_to(@resource.build_auth_url(params[:redirect_url], # redirect_headers)) else raise ActionController::RoutingError, 'Not Found' end end end end
Version data entries
6 entries across 6 versions & 1 rubygems