mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 15:24:05 +08:00
8 lines
380 B
Plaintext
8 lines
380 B
Plaintext
require_dependency "<%= underscored_name %>_constraint"
|
|
|
|
<%= classified_name %>::Engine.routes.draw do
|
|
get "/" => "<%= underscored_name %>#index", constraints: <%= classified_name %>Constraint.new
|
|
get "/actions" => "actions#index", constraints: <%= classified_name %>Constraint.new
|
|
get "/actions/:id" => "actions#show", constraints: <%= classified_name %>Constraint.new
|
|
end
|