* Move frontend to root * Fix backend issues * Remove old routes * Setup Dockerfile * Fix today /tags multiplt requests issue * Fix race condition on today's inbox widget * Fix cors development issue * Fix CORS for Dockerfile * Fix dockerised settings for infinite loop * Fix translation issues * fixup! Fix translation issues --------- Co-authored-by: Your Name <you@example.com>
14 lines
223 B
TypeScript
14 lines
223 B
TypeScript
import { Tag } from "./Tag";
|
|
|
|
export interface Note {
|
|
id?: number;
|
|
title: string;
|
|
content: string;
|
|
created_at?: string;
|
|
updated_at?: string;
|
|
tags?: Tag[];
|
|
project?: {
|
|
id: number;
|
|
name: string;
|
|
};
|
|
}
|