feat: add shortcut tags in UI

This commit is contained in:
Steven
2023-06-23 12:34:02 +08:00
parent f3c758ff22
commit b3640699e0
4 changed files with 39 additions and 9 deletions

View File

@ -15,6 +15,7 @@ interface Shortcut {
link: string;
description: string;
visibility: Visibility;
tags: string[];
}
interface ShortcutCreate {
@ -22,6 +23,7 @@ interface ShortcutCreate {
link: string;
description: string;
visibility: Visibility;
tags: string[];
}
interface ShortcutPatch {
@ -31,8 +33,10 @@ interface ShortcutPatch {
link?: string;
description?: string;
visibility?: Visibility;
tags?: string[];
}
interface ShortcutFind {
creatorId?: UserId;
tag?: string;
}