()
| 13 | @OpenAPI({ summary: "Return a list of contributors for all listed projects in dzcode.io" }) |
| 14 | @ResponseSchema(GetTeamResponseDto) |
| 15 | public async getContributions(): Promise<GetTeamResponseDto> { |
| 16 | const contributors = await this.teamRepository.find(); |
| 17 | |
| 18 | return { |
| 19 | contributors, |
| 20 | }; |
| 21 | } |
| 22 | } |