Rimian Perkins 871cec9ec3 pretty js
2019-09-14 17:28:58 +10:00

10 lines
215 B
Ruby

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