Recommendations for appdir crud routes
Unanswered
Miniature Bull Terrier posted this in #help-forum
Miniature Bull TerrierOP
Does anyone have any opinion/recommendations/blog posts regarding options when creating route handling CRUD operations? Our users fill out a form "document" which they can save to draft, view a read only version, edit, etc..
Does it make sense to use dynamic routes like
or
or use params?
Open to any suggestions, my google-foo is failing me.
Does it make sense to use dynamic routes like
/{doc-id}/create /{doc-id}/editor
/create /edit/{doc-id} or use params?
/edit?id={doc-id}/view?id={doc-id}Open to any suggestions, my google-foo is failing me.