diff --git a/src/notes/note.utils.ts b/src/notes/note.utils.ts new file mode 100644 index 000000000..d84c4b182 --- /dev/null +++ b/src/notes/note.utils.ts @@ -0,0 +1,18 @@ +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']; + } +}