mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-09 22:13:12 +08:00
Client: Implemented new config system
This commit is contained in:
@@ -1,8 +1,22 @@
|
||||
import { Model } from './';
|
||||
|
||||
export interface Config extends Model {
|
||||
key: string;
|
||||
value: string;
|
||||
valueType: string;
|
||||
isLocked: boolean;
|
||||
}
|
||||
export interface Config {
|
||||
WEATHER_API_KEY: string;
|
||||
lat: number;
|
||||
long: number;
|
||||
isCelsius: boolean;
|
||||
customTitle: string;
|
||||
pinAppsByDefault: boolean;
|
||||
pinCategoriesByDefault: boolean;
|
||||
hideHeader: boolean;
|
||||
useOrdering: string;
|
||||
appsSameTab: boolean;
|
||||
bookmarksSameTab: boolean;
|
||||
searchSameTab: boolean;
|
||||
hideApps: boolean;
|
||||
hideCategories: boolean;
|
||||
hideSearch: boolean;
|
||||
defaultSearchProvider: string;
|
||||
dockerApps: boolean;
|
||||
dockerHost: string;
|
||||
kubernetesApps: boolean;
|
||||
unpinStoppedApps: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user