6 lines
111 B
Ruby
6 lines
111 B
Ruby
|
class PaymentsController < ApplicationController
|
||
|
def show
|
||
|
@payment = Payment.find(params[:id])
|
||
|
end
|
||
|
end
|