Sha256: 31e8eaacbb8108edb070b2bafb21d4f08700f56977c9dff1deade2584a4773d3
Contents?: true
Size: 369 Bytes
Versions: 6
Compression:
Stored size: 369 Bytes
Contents
# frozen_string_literal: true Deposit::Engine.routes.draw do root to: 'collection#index' resources :collection, only: [:index] scope '/collection' do match '/record' => 'collection#record_payments', :via => :post, :as => 'do_record_payments' match '/account_invoices' => 'collection#account_invoices', :via => :get, :as => 'account_invoices' end end
Version data entries
6 entries across 6 versions & 1 rubygems