Remove NoteUtils class, as the planned parsing logic is not needed anymore

Signed-off-by: David Mehren <git@herrmehren.de>
Co-authored-by: Yannick Bungers <git@innay.de>
This commit is contained in:
David Mehren 2020-10-03 17:36:01 +02:00
parent a04d5b29f9
commit 520046f8d4
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -1,18 +0,0 @@
import { Note } from './note.entity';
export class NoteUtils {
public static parseTitle(note: Note): string {
// TODO: Implement method
return 'Hardcoded note title';
}
public static parseDescription(note: Note): string {
// TODO: Implement method
return 'Hardcoded note description';
}
public static parseTags(note: Note): string[] {
// TODO: Implement method
return ['Hardcoded note tag'];
}
}