mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-09 21:14:53 +00:00
10 lines
216 B
Ruby
10 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
DiscoursePatrons::Engine.routes.draw do
|
|
get '/admin' => 'admin#index'
|
|
get '/' => 'patrons#index'
|
|
get '/:pid' => 'patrons#index'
|
|
|
|
resources :patrons, only: [:index, :create]
|
|
end
|