Remove not needed TODOs

Signed-off-by: Yannick Bungers <git@innay.de>
This commit is contained in:
Yannick Bungers 2023-10-07 20:40:04 +02:00 committed by David Mehren
parent 8879b51344
commit fbd5fa8b07
2 changed files with 0 additions and 3 deletions

View file

@ -105,7 +105,6 @@ export class UsersService {
if (user.photo) {
return user.photo;
} else {
// TODO: Create new photo, see old code
return '';
}
}

View file

@ -13,8 +13,6 @@ import { NoteMetadataDto } from '../../src/notes/note-metadata.dto';
import { User } from '../../src/users/user.entity';
import { TestSetup, TestSetupBuilder } from '../test-setup';
// TODO Tests have to be reworked using UserService functions
describe('Me', () => {
let testSetup: TestSetup;