diff --git a/web/apps/photos/src/services/feature-flag.ts b/web/apps/photos/src/services/feature-flag.ts new file mode 100644 index 0000000000..c6d722bf0f --- /dev/null +++ b/web/apps/photos/src/services/feature-flag.ts @@ -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 () => {};