Sha256: 03469d2ebc20d731086e89bca5c6b8229ee437f834d8bb6c7d858ba004734b6d
Contents?: true
Size: 1.48 KB
Versions: 18
Compression:
Stored size: 1.48 KB
Contents
ForestLiana::Engine.routes.draw do # Login post 'sessions' => 'sessions#create' # Stripe Integration get '(:collection)_stripe_payments' => 'stripe#payments' get ':collection/:id/stripe_payments' => 'stripe#payments' post 'stripe_payments/refunds' => 'stripe#refund' get '(:collection)_stripe_invoices' => 'stripe#invoices' get ':collection/:id/stripe_invoices' => 'stripe#invoices' get ':collection/:id/stripe_cards' => 'stripe#cards' get '(:collection)_stripe_subscriptions' => 'stripe#subscriptions' get ':collection/:id/stripe_subscriptions' => 'stripe#subscriptions' get ':collection/:id/stripe_bank_accounts' => 'stripe#bank_accounts' # Intercom Integration get ':collection/:id/intercom_conversations' => 'intercom#user_conversations' get ':collection/:id/intercom_attributes' => 'intercom#attributes' # Stats post '/stats/:collection' => 'stats#show' # CRUD get '/' => 'apimaps#index' get ':collection' => 'resources#index' get ':collection/:id' => 'resources#show' post ':collection' => 'resources#create' put ':collection/:id' => 'resources#update' delete ':collection/:id' => 'resources#destroy' # Associations get ':collection/:id/relationships/:association_name' => 'associations#index' put ':collection/:id/relationships/:association_name' => 'associations#update' post ':collection/:id/relationships/:association_name' => 'associations#associate' delete ':collection/:id/relationships/:association_name' => 'associations#dissociate' end
Version data entries
18 entries across 18 versions & 1 rubygems