mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 17:49:24 +00:00
9 lines
184 B
Ruby
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
|