Re: How to Manage User & Create a Model

2022-08-25 Thread Ryan Nowakowski
On Wed, Aug 24, 2022 at 12:48:26AM -0700, Aakash Bhaikatti wrote: > As a User > >- I can signup either as LIBRARIAN and MEMBER using username and password >- I can login using username/password and get JWT access token > > As a Librarian > >- I can add, update, and remove Books from

Re: How to Manage User & Create a Model

2022-08-24 Thread ahmed doudou
https://docs.djangoproject.com/en/4.1/topics/auth/customizing/ read this documentation to the end it's gonna solve your problem Ahmed °•° On Wed, Aug 24, 2022, 14:52 Aakash Bhaikatti wrote: > As a User > >- I can signup either as LIBRARIAN and MEMBER using username and >password >

How to Manage User & Create a Model

2022-08-24 Thread Aakash Bhaikatti
As a User - I can signup either as LIBRARIAN and MEMBER using username and password - I can login using username/password and get JWT access token As a Librarian - I can add, update, and remove Books from the system - I can add, update, view, and remove Member from the system As