Feature/add restricted view (#295)

* Add restricted view

* Update changelog
This commit is contained in:
Thomas Kaul
2021-08-16 21:40:29 +02:00
committed by GitHub
parent 7c91727eb1
commit 05b0efef82
22 changed files with 190 additions and 25 deletions

View File

@@ -2,6 +2,7 @@ import { Currency, ViewMode } from '@prisma/client';
export interface UserSettings {
baseCurrency?: Currency;
isRestrictedView?: boolean;
locale: string;
viewMode?: ViewMode;
}