mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-19 17:55:17 -04:00

Co-authored-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
32 lines
1 KiB
TypeScript
32 lines
1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2025 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { GroupInfoDto } from '@hedgedoc/commons';
|
|
import { Controller, Get, Param, UseGuards } from '@nestjs/common';
|
|
import { ApiTags } from '@nestjs/swagger';
|
|
|
|
import { SessionGuard } from '../../../auth/session.guard';
|
|
import { GroupsService } from '../../../groups/groups.service';
|
|
import { ConsoleLoggerService } from '../../../logger/console-logger.service';
|
|
import { OpenApi } from '../../utils/decorators/openapi.decorator';
|
|
|
|
@UseGuards(SessionGuard)
|
|
@OpenApi(401, 403)
|
|
@ApiTags('groups')
|
|
@Controller('groups')
|
|
export class GroupsController {
|
|
constructor(
|
|
private readonly logger: ConsoleLoggerService,
|
|
private groupService: GroupsService,
|
|
) {
|
|
this.logger.setContext(GroupsController.name);
|
|
}
|
|
|
|
@Get(':groupName')
|
|
@OpenApi(200)
|
|
async getGroup(@Param('groupName') groupName: string): Promise<GroupInfoDto> {
|
|
return await this.groupService.getGroupInfoDtoByName(groupName);
|
|
}
|
|
}
|