User Story

As a user,

I want to see the list of other users.

With ability to view their personal information.

API Calls

users

returns a list of Users.

createUser(user)

returns a new User entity.

updateUser(user)

returns the updated User entity.

deleteUser(userId)

returns number of deleted entities.

User Interface

Users Page

Acceptance Criteria

AC-1 Page is available at /users
AC-1.1 Any authorised user can see this page
AC-2 There is a list of users in a form of table
AC-2.1 Display avatar image, first and last name, email, department and position
AC-2.2 User can search by full name
AC-2.3 User can sort by first and last name, email, department and position
AC-3 User can update his own profile
AC-4 Admin can create new user
AC-5 Admin can update any user
AC-6 Admin can delete any user