14 lines
431 B
Ruby
14 lines
431 B
Ruby
class Public::Api::V1::Captain::PaymentsController < ApplicationController
|
|
layout false
|
|
skip_before_action :authenticate_user!, raise: false
|
|
skip_before_action :check_current_user_is_active, raise: false
|
|
|
|
def show
|
|
@charge = GlobalID::Locator.locate_signed(params[:token], purpose: :pix_payment)
|
|
|
|
return if @charge.present?
|
|
|
|
render plain: 'Link de pagamento inválido ou expirado.', status: :not_found
|
|
end
|
|
end
|