mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-23 03:27:05 -04:00

This service is necessary as we plan to have functions to create and manipulate groups in the future. The GroupInfoDto was moved from the file note-permissions.dto.ts to mimic the UserInfoDto. Signed-off-by: Philip Molares <philip.molares@udo.edu>
18 lines
527 B
TypeScript
18 lines
527 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { Group } from './group.entity';
|
|
import { GroupsService } from './groups.service';
|
|
import { LoggerModule } from '../logger/logger.module';
|
|
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([Group]), LoggerModule],
|
|
providers: [GroupsService],
|
|
exports: [GroupsService],
|
|
})
|
|
export class GroupsModule {}
|