1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-15 01:16:22 +02:00

chore: remove unused newHostedAuthHandler flag (#9070)

https://linear.app/unleash/issue/2-3106/clean-up-post-unified-auth-handler

Cleans up this flag that we never ended up using anyways.
This commit is contained in:
Nuno Góis 2025-01-09 09:13:18 +00:00 committed by GitHub
parent 161fa131c7
commit b0434c9a84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,6 @@ export type IFlagKey =
| 'streaming'
| 'etagVariant'
| 'deltaApi'
| 'newHostedAuthHandler'
| 'uniqueSdkTracking';
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
@ -282,10 +281,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_DELTA_API,
false,
),
newHostedAuthHandler: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_NEW_HOSTED_AUTH_HANDLER,
false,
),
uniqueSdkTracking: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_UNIQUE_SDK_TRACKING,
false,