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

Are you considering adding authentication/authorization in the future? #164

Closed serpulga closed 1 year ago

ChuckMoe commented 1 year ago

You can use other frameworks for it, like fastapi-users, and then use the Depends functionality. Hope this helps.

awtkns commented 1 year ago

As @ChuckMoe correctly stated there are other frameworks that support this. Authentication / Authorization can also be handled through dependencies which has been supported from the initial release.

More details can be found here.