2019-08-27 06:04:02 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-11 05:11:02 -04:00
|
|
|
DiscoursePatrons::Engine.routes.draw do
|
2019-09-13 22:56:28 -04:00
|
|
|
get '/admin' => 'admin#index'
|
2019-09-23 03:53:05 -04:00
|
|
|
get '/admin/subscriptions' => 'subscriptions#index'
|
2019-09-24 02:04:42 -04:00
|
|
|
get '/admin/plans/:plan_id' => 'plans#show'
|
2019-09-24 06:44:51 -04:00
|
|
|
post '/admin/plans' => 'plans#create'
|
2019-09-11 05:11:02 -04:00
|
|
|
get '/' => 'patrons#index'
|
2019-09-14 03:28:58 -04:00
|
|
|
get '/:pid' => 'patrons#show'
|
2019-09-11 05:11:02 -04:00
|
|
|
resources :patrons, only: [:index, :create]
|
2017-01-30 21:28:41 -05:00
|
|
|
end
|