remove rename from apis url

This commit is contained in:
faris Aljohari
2024-10-08 01:13:00 -05:00
parent bd3945f2ee
commit 898791ae93
5 changed files with 5 additions and 5 deletions

View File

@ -133,7 +133,7 @@ export class CommunityController {
}
@ApiBearerAuth()
@UseGuards(JwtAuthGuard)
@Put('rename/:communityUuid')
@Put(':communityUuid')
async renameCommunityByUuid(
@Param('communityUuid') communityUuid: string,
@Body() updateCommunityDto: UpdateCommunityNameDto,