2019-09-11 19:11:02 +10:00

9 lines
184 B
Ruby

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