Skip to content

Commit

Permalink
chore: remove unstable label from GA metrics features (#7433)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Jun 24, 2024
1 parent 0af5bba commit ea1221c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default class ProjectInsightsController extends Controller {
permission: NONE,
middleware: [
this.openApiService.validPath({
tags: ['Unstable'],
tags: ['Projects'],
operationId: 'getProjectInsights',
summary: 'Get an overview of a project insights.',
description:
Expand Down
6 changes: 3 additions & 3 deletions src/lib/features/project/project-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default class ProjectController extends Controller {
permission: NONE,
middleware: [
this.openApiService.validPath({
tags: ['Unstable'],
tags: ['Projects'],
operationId: 'getProjectApplications',
summary: 'Get a list of all applications for a project.',
description:
Expand All @@ -177,7 +177,7 @@ export default class ProjectController extends Controller {
permission: NONE,
middleware: [
this.openApiService.validPath({
tags: ['Unstable'],
tags: ['Projects'],
operationId: 'getProjectFlagCreators',
summary: 'Get a list of all flag creators for a project.',
description:
Expand All @@ -197,7 +197,7 @@ export default class ProjectController extends Controller {
permission: NONE,
middleware: [
this.openApiService.validPath({
tags: ['Unstable'],
tags: ['Projects'],
operationId: 'getOutdatedProjectSdks',
summary: 'Get outdated project SDKs',
description:
Expand Down
6 changes: 3 additions & 3 deletions src/lib/routes/admin-api/metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class MetricsController extends Controller {
permission: NONE,
middleware: [
openApiService.validPath({
tags: ['Unstable'],
tags: ['Metrics'],
operationId: 'getApplicationOverview',
summary: 'Get application overview',
description:
Expand All @@ -166,7 +166,7 @@ class MetricsController extends Controller {
permission: NONE,
middleware: [
openApiService.validPath({
tags: ['Unstable'],
tags: ['Metrics'],
operationId: 'getApplicationEnvironmentInstances',
summary: 'Get application environment instances',
description:
Expand All @@ -187,7 +187,7 @@ class MetricsController extends Controller {
permission: NONE,
middleware: [
openApiService.validPath({
tags: ['Unstable'],
tags: ['Metrics'],
operationId: 'getOutdatedSdks',
summary: 'Get outdated SDKs',
description:
Expand Down

0 comments on commit ea1221c

Please sign in to comment.