Add an end point to be able to list all users if you are a manager or above. The endpoint should be at api/users/. It should return either a json array of in the format:
[
{
'username': <username>,
'full_name': <full name>,
'user_id': <user id>
}
...
]
Add an end point to be able to list all users if you are a manager or above. The endpoint should be at
api/users/. It should return either a json array of in the format: