User Liked Project
'/users/{id}/liked-projects'
GET
async getAll(
@param.path.string('id') id: typeof User.prototype.id,
@param.query.object('filter') filter?: Filter<Project>,
): Promise<Project[]>'/users/{id}/liked-projects/{projectId}'
GET
async find(
@param.path.string('id') id: string,
@param.path.number('projectId') projectId: typeof Project.prototype.id,
): Promise<Project>POST
DEL
Last updated