Sha256: 9b4206ccc48c4f3e43da9a7acf1ead5576477c80ff12b0c3f6a345017b2f1edc
Contents?: true
Size: 524 Bytes
Versions: 62
Compression:
Stored size: 524 Bytes
Contents
module Workarea class Admin::PaymentTransactionsController < Admin::ApplicationController required_permissions :orders after_action :track_index_filters, only: :index def index search = Search::AdminPaymentTransactions.new( params.merge(autocomplete: request.xhr?) ) @search = Admin::SearchViewModel.new(search, view_model_options) end def show @transaction = Admin::TransactionViewModel.wrap( Payment::Transaction.find(params[:id]) ) end end end
Version data entries
62 entries across 62 versions & 1 rubygems