mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-07 13:42:34 +00:00
feat: add title field to shortcut
This commit is contained in:
3
web/src/types/modules/shortcut.d.ts
vendored
3
web/src/types/modules/shortcut.d.ts
vendored
@ -19,6 +19,7 @@ interface Shortcut {
|
||||
|
||||
name: string;
|
||||
link: string;
|
||||
title: string;
|
||||
description: string;
|
||||
visibility: Visibility;
|
||||
tags: string[];
|
||||
@ -29,6 +30,7 @@ interface Shortcut {
|
||||
interface ShortcutCreate {
|
||||
name: string;
|
||||
link: string;
|
||||
title: string;
|
||||
description: string;
|
||||
visibility: Visibility;
|
||||
tags: string[];
|
||||
@ -40,6 +42,7 @@ interface ShortcutPatch {
|
||||
|
||||
name?: string;
|
||||
link?: string;
|
||||
title?: string;
|
||||
description?: string;
|
||||
visibility?: Visibility;
|
||||
tags?: string[];
|
||||
|
Reference in New Issue
Block a user