Project
Endpoints to manage projects.
'/projects'
GET
async find(
@param.filter(Project) filter?: Filter<Project>,
): Promise<Project[]>Auth: No
Get all projects.
'/projects/{id}'
GET
async findById(
@param.path.number('id') id: number,
@param.filter(Project, {exclude: 'where'})
filter?: FilterExcludingWhere<Project>,
): Promise<Project>Auth: No
Get a specific project by ID.
'/projects/featured'
GET
async getFeaturedProjects(): Promise<Project[]>Auth: No
Get all featured projects.
Last updated