mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 14:26:12 +08:00
d83f99fc2e
Fixes bugs, simplifies code, more default files. General idea, more is more here as it's easier to just delete things than reading and passing all the options.
8 lines
379 B
Plaintext
8 lines
379 B
Plaintext
require_dependency "<%= underscored_name %>_constraint"
|
|
|
|
<%= classified_name %>::Engine.routes.draw do
|
|
get "/" => "<%= dasherized_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
|