We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our current route structure is very chaotic and inconsistent. The entrance tree should be the standard:
entrance
/edit/index
/edit/form
linked-buildings
buildings
building
project
addon/routes ├── application.js ├── building │ ├── edit │ │ ├── dwelling │ │ │ ├── edit.js │ │ │ └── new.js │ │ ├── dwelling.js │ │ ├── dwellings.js │ │ ├── entrance │ │ │ ├── edit │ │ │ │ ├── index.js │ │ │ │ └── link-street.js │ │ │ ├── edit.js │ │ │ └── new.js │ │ ├── entrance.js │ │ ├── entrances.js │ │ ├── form.js │ │ └── index.js │ ├── edit.js │ └── new.js ├── building.js ├── project │ ├── form.js │ ├── index.js │ ├── linked-buildings.js │ └── new.js ├── project.js ├── search-building.js └── search-project.js
The text was updated successfully, but these errors were encountered:
velrest
No branches or pull requests
Our current route structure is very chaotic and inconsistent. The
entrance
tree should be the standard:/edit/index
and not in/edit/form
linked-buildings
should just bebuildings
building
should be a sub route ofproject
if possibleThe text was updated successfully, but these errors were encountered: