Skip to content

chore: move vscode local out of experiments #5773

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

Merged
merged 3 commits into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix entities
  • Loading branch information
kylecarbs committed Jan 20, 2023
commit 53ad5062da4170651bfc27be281997fa100ad85f
5 changes: 5 additions & 0 deletions codersdk/experiments.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ import (

type Experiment string

const (
// Add new experiments here!
// ExperimentExample Experiment = "example"
)

var (
// ExperimentsAll should include all experiments that are safe for
// users to opt-in to via --experimental='*'.
Expand Down
2 changes: 1 addition & 1 deletion site/src/testHelpers/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ export const MockEntitlementsWithAuditLog: TypesGen.Entitlements = {
}),
}

export const MockExperiments: TypesGen.Experiment[] = ["vscode_local"]
export const MockExperiments: TypesGen.Experiment[] = []

export const MockAuditLog: TypesGen.AuditLog = {
id: "fbd2116a-8961-4954-87ae-e4575bd29ce0",
Expand Down