mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-07 13:42:34 +00:00
feat: add shortcut tags in UI
This commit is contained in:
4
web/src/types/modules/shortcut.d.ts
vendored
4
web/src/types/modules/shortcut.d.ts
vendored
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user