Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Upcoming Features
---

Add `parentChildAccountAccess` feature flag ([#9919](https://github.com/linode/manager/pull/9919))
7 changes: 4 additions & 3 deletions packages/manager/src/dev-tools/FeatureFlagTool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ import { getStorage, setStorage } from 'src/utilities/storage';
const MOCK_FEATURE_FLAGS_STORAGE_KEY = 'devTools/mock-feature-flags';

const options: { flag: keyof Flags; label: string }[] = [
{ flag: 'metadata', label: 'Metadata' },
{ flag: 'vpc', label: 'VPC' },
{ flag: 'aglb', label: 'AGLB' },
{ flag: 'aglbFullCreateFlow', label: 'AGLB Full Create Flow' },
{ flag: 'unifiedMigrations', label: 'Unified Migrations' },
{ flag: 'dcGetWell', label: 'DC Get Well' },
{ flag: 'metadata', label: 'Metadata' },
{ flag: 'parentChildAccountAccess', label: 'Parent/Child Account' },
{ flag: 'selfServeBetas', label: 'Self Serve Betas' },
{ flag: 'unifiedMigrations', label: 'Unified Migrations' },
{ flag: 'vpc', label: 'VPC' },
];

export const FeatureFlagTool = withFeatureFlagProvider(() => {
Expand Down
1 change: 1 addition & 0 deletions packages/manager/src/featureFlags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export interface Flags {
metadata: boolean;
oneClickApps: OneClickApp;
oneClickAppsDocsOverride: Record<string, Doc[]>;
parentChildAccountAccess: boolean;
productInformationBanners: ProductInformationBannerFlag[];
promos: boolean;
promotionalOffers: PromotionalOffer[];
Expand Down