feat: add title field to shortcut

This commit is contained in:
Steven
2023-07-31 21:53:06 +08:00
parent 714889433f
commit e6ece43231
7 changed files with 45 additions and 4 deletions

View File

@ -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[];