saucy/app/controllers/payments_controller.rb
Hugo Peixoto 9058ed98f7 Adds payment page
Instead of sending all the payment details by email, we're now sending
only a link to a page on this platform. This is to help reduce questions
of whether the emails are from scammers or real.
2023-07-12 19:13:08 +01:00

6 lines
111 B
Ruby

class PaymentsController < ApplicationController
def show
@payment = Payment.find(params[:id])
end
end