MOBILE-2768 site: Add missing fields in site info type

main
Dani Palou 2024-02-13 13:08:26 +01:00
parent 9b8414e8b4
commit 380bd72087
1 changed files with 3 additions and 0 deletions

View File

@ -374,6 +374,9 @@ export type CoreSiteInfoResponse = {
usercalendartype?: string; // Calendar typed used by the user.
userissiteadmin?: boolean; // Whether the user is a site admin or not.
theme?: string; // Current theme for the user.
limitconcurrentlogins?: number; // @since 4.0. Number of concurrent sessions allowed.
usersessionscount?: number; // @since 4.0. Number of active sessions for current user. Only if limitconcurrentlogins is used.
policyagreed?: number; // @since 4.4. Whether user accepted all the policies.
};
/**