Sha256: 8a909c5a284c7890d7a4da66f5049c6e60e031f2f2ba2894fbacc8ab00a3a480

Contents?: true

Size: 300 Bytes

Versions: 62

Compression:

Stored size: 300 Bytes

Contents

module Workarea
  module Admin
    class PaymentsController < Admin::ApplicationController
      required_permissions :orders

      def show
        @payment = PaymentViewModel.wrap(Payment.find(params[:id]))
        @order = OrderViewModel.wrap(Order.find(@payment.id))
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-admin-3.4.13 app/controllers/workarea/admin/payments_controller.rb
workarea-admin-3.4.12 app/controllers/workarea/admin/payments_controller.rb