Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat:Remove CustomChartsEnabled feature flag from OrgFeatureFlags and OpenAPI #46

Merged
merged 1 commit into from
Sep 4, 2024
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
Expand Up @@ -76,10 +76,6 @@ public enum OrgFeatureFlags
///
/// </summary>
LanggraphDeployOwnCloudEnabled,
/// <summary>
///
/// </summary>
CustomChartsEnabled,
}

/// <summary>
Expand Down Expand Up @@ -111,7 +107,6 @@ public static string ToValueString(this OrgFeatureFlags value)
OrgFeatureFlags.ConsolidatePlaygroundComparative => "consolidate_playground_comparative",
OrgFeatureFlags.ResourceTags => "resource_tags",
OrgFeatureFlags.LanggraphDeployOwnCloudEnabled => "langgraph_deploy_own_cloud_enabled",
OrgFeatureFlags.CustomChartsEnabled => "custom_charts_enabled",
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
};
}
Expand Down Expand Up @@ -139,7 +134,6 @@ public static string ToValueString(this OrgFeatureFlags value)
"consolidate_playground_comparative" => OrgFeatureFlags.ConsolidatePlaygroundComparative,
"resource_tags" => OrgFeatureFlags.ResourceTags,
"langgraph_deploy_own_cloud_enabled" => OrgFeatureFlags.LanggraphDeployOwnCloudEnabled,
"custom_charts_enabled" => OrgFeatureFlags.CustomChartsEnabled,
_ => null,
};
}
Expand Down
2 changes: 0 additions & 2 deletions src/libs/LangSmith/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13169,7 +13169,6 @@ components:
- consolidate_playground_comparative
- resource_tags
- langgraph_deploy_own_cloud_enabled
- custom_charts_enabled
type: string
description: 'Feature flags for orgs (cannot subclass an enum and may diverge from tenant flags, so maintained separately).'
OrgIdentityPatch:
Expand Down Expand Up @@ -13557,7 +13556,6 @@ components:
consolidate_playground_comparative: false
resource_tags: false
langgraph_deploy_own_cloud_enabled: false
custom_charts_enabled: false
description: Organization level configuration. May include any field that exists in tenant config and additional fields.
OrganizationDashboardColorScheme:
title: OrganizationDashboardColorScheme
Expand Down