Hugo Peixoto
9058ed98f7
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.
6 lines
111 B
Ruby
6 lines
111 B
Ruby
class PaymentsController < ApplicationController
|
|
def show
|
|
@payment = Payment.find(params[:id])
|
|
end
|
|
end
|