GroupsService: Create new GroupsService

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>
This commit is contained in:
Philip Molares 2021-02-20 11:41:15 +01:00 committed by David Mehren
parent 292944ed78
commit b1683a5c64
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
16 changed files with 220 additions and 38 deletions

View file

@ -27,6 +27,7 @@ import { promises as fs } from 'fs';
import { ClientError, NotInDBError, PermissionError } from '../errors/errors';
import { NoteGroupPermission } from '../permissions/note-group-permission.entity';
import { NoteUserPermission } from '../permissions/note-user-permission.entity';
import { Group } from '../groups/group.entity';
describe('MediaService', () => {
let service: MediaService;
@ -78,6 +79,8 @@ describe('MediaService', () => {
.useValue({})
.overrideProvider(getRepositoryToken(MediaUpload))
.useClass(Repository)
.overrideProvider(getRepositoryToken(Group))
.useValue({})
.compile();
service = module.get<MediaService>(MediaService);