User Story

As a user,

I want to see my own CVs.

With ability to create new, update or remove them.

API Calls

user(userId)

returns User entity.

createCv(cv)

returns new CV entity.

updateCv(cv)

returns updated CV entity.

deleteCv(cv)

returns number of deleted entities.

User Interface

Acceptance Criteria

AC-1 Page is available at /users/:userId/cvs
AC-1.1 The user can see his own resumes
AC-2 There is a list of CVs in a form of table
AC-2.1 Display CV name and description
AC-2.1 Can search by name and description
AC-2.2 Can sort by name
AC-3 User can create new CV
AC-4 User can update CV
AC-5 User can delete CV
AC-6 The interface is read-only if the resumes displayed do not belong to the user
AC-7 Admin can manage any user CVs