mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-25 22:09:36 +02:00
Split categories and bookmarks forms into separate files. Added visibility functionality to categories and bookmarks
This commit is contained in:
parent
f127a354ef
commit
d83e3056c6
16 changed files with 484 additions and 369 deletions
|
@ -1,15 +1,11 @@
|
|||
import { Model } from '.';
|
||||
|
||||
export interface Bookmark extends Model {
|
||||
name: string;
|
||||
url: string;
|
||||
categoryId: number;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
export interface NewBookmark {
|
||||
name: string;
|
||||
url: string;
|
||||
categoryId: number;
|
||||
icon: string;
|
||||
}
|
||||
isPublic: boolean;
|
||||
}
|
||||
|
||||
export interface Bookmark extends Model, NewBookmark {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue