mirror of
https://github.com/aykhans/slash-e.git
synced 2026-04-21 22:10:02 +00:00
feat: add shortcut tags in UI
This commit is contained in:
Vendored
+4
@@ -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