Rimian Perkins d4afe93a5d delete plans
2019-09-25 13:20:28 +10:00

16 lines
305 B
Ruby

# frozen_string_literal: true
DiscoursePatrons::Engine.routes.draw do
scope 'admin' do
get '/' => 'admin#index'
resources :subscriptions, only: [:index]
resources :plans
end
get '/' => 'patrons#index'
get '/:pid' => 'patrons#show'
resources :patrons, only: [:index, :create]
end