dawidl022 / ECS506-flat-finder-app

FDM Flat Finder application for ECS506U - Software Engineering group project at Queen Mary University of London
1 stars 1 forks source link

Admin panel users list #122

Closed dawidl022 closed 1 year ago

dawidl022 commented 1 year ago

If the user is an admin, they should have access to the admin panel. The admin panel should display a list of all users registered in the system. The list of users can be fetched from the GET /api/v1/users endpoint. This endpoint is not paginated, so all the registered users will be returned all at one.

The admin should be able to remove any user from the system, with the exception of currently logged-in admin for obvious reasons. A user can be removed by calling the DELETE /api/v1/users/{userId} endpoint.

Image

Definition of Done: