mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
#34 cleaned IComment
This commit is contained in:
parent
62f0fa59ca
commit
86a22cca3c
2 changed files with 0 additions and 6 deletions
|
@ -106,10 +106,7 @@ export const EMPTY_COMMENT: IComment = {
|
||||||
id: null,
|
id: null,
|
||||||
text: '',
|
text: '',
|
||||||
files: [],
|
files: [],
|
||||||
temp_ids: [],
|
|
||||||
is_private: false,
|
|
||||||
user: null,
|
user: null,
|
||||||
error: '',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const NODE_EDITORS = {
|
export const NODE_EDITORS = {
|
||||||
|
|
|
@ -142,11 +142,8 @@ export interface INode {
|
||||||
export interface IComment {
|
export interface IComment {
|
||||||
id: number;
|
id: number;
|
||||||
text: string;
|
text: string;
|
||||||
temp_ids?: string[];
|
|
||||||
files: IFile[];
|
files: IFile[];
|
||||||
is_private: boolean;
|
|
||||||
user: IUser;
|
user: IUser;
|
||||||
error?: string;
|
|
||||||
|
|
||||||
created_at?: string;
|
created_at?: string;
|
||||||
update_at?: string;
|
update_at?: string;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue