9 lines
184 B
Ruby
Raw Normal View History

2019-08-27 20:04:02 +10:00
# frozen_string_literal: true
2019-09-11 19:11:02 +10:00
DiscoursePatrons::Engine.routes.draw do
get '/' => 'patrons#index'
get '/:pid' => 'patrons#index'
resources :patrons, only: [:index, :create]
2017-01-31 13:28:41 +11:00
end