Preparation for custom sorting

This commit is contained in:
unknown
2021-06-17 10:56:27 +02:00
parent ce173f2c42
commit 8974fb3b49
7 changed files with 42 additions and 7 deletions

View File

@@ -5,6 +5,7 @@ export interface App extends Model {
url: string;
icon: string;
isPinned: boolean;
orderId: number;
}
export interface NewApp {

View File

@@ -10,4 +10,5 @@ export interface SettingsForm {
pinAppsByDefault: number;
pinCategoriesByDefault: number;
hideHeader: number;
useOrdering: string;
}