mandate
This commit is contained in:
15
web/apps/photos/src/services/feature-flag.ts
Normal file
15
web/apps/photos/src/services/feature-flag.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Fetch feature flags (potentially user specific) from remote and save them in
|
||||
* local storage for subsequent lookup.
|
||||
*/
|
||||
export const fetchAndSaveFeatureFlags = async () => {};
|
||||
|
||||
/**
|
||||
* Return `true` if the current user is marked as an "internal" user.
|
||||
*/
|
||||
export const isInternalUser = async () => {};
|
||||
|
||||
/**
|
||||
* Return `true` if the current user is marked as an "beta" user.
|
||||
*/
|
||||
export const isBetaUser = async () => {};
|
||||
Reference in New Issue
Block a user