awtkns / fastapi-crudrouter

A dynamic FastAPI router that automatically creates CRUD routes for your models
https://fastapi-crudrouter.awtkns.com
MIT License
1.34k stars 156 forks source link

add name for route #161

Open paxtonBravo opened 2 years ago

paxtonBravo commented 2 years ago

route name will be like this

{ "path": "/proxies", "name": "get_all_proxies", "path_regex": "^/proxies$" }, { "path": "/proxies", "name": "create_one_proxies", "path_regex": "^/proxies$" }, { "path": "/proxies", "name": "delete_all_proxies", "path_regex": "^/proxies$" }, { "path": "/proxies/{item_id}", "name": "get_one_proxies", "path_regex": "^/proxies/(?P[^/]+)$" }, { "path": "/proxies/{item_id}", "name": "update_one_proxies", "path_regex": "^/proxies/(?P[^/]+)$" }, { "path": "/proxies/{item_id}", "name": "delete_one_proxies", "path_regex": "^/proxies/(?P[^/]+)$" },

vercel[bot] commented 2 years ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
fastapi-crudrouter ✅ Ready (Inspect) Visit Preview Jul 7, 2022 at 3:42AM (UTC)