chore: revert dynamic params as a safe experiment (#17510)

This commit is contained in:
Steven Masley
2025-04-22 11:21:15 -05:00
committed by GitHub
parent 5d97d82422
commit ca38729840
6 changed files with 15 additions and 17 deletions

View File

@ -29,6 +29,6 @@ func (api *API) handleExperimentsGet(rw http.ResponseWriter, r *http.Request) {
func handleExperimentsSafe(rw http.ResponseWriter, r *http.Request) {
ctx := r.Context()
httpapi.Write(ctx, rw, http.StatusOK, codersdk.AvailableExperiments{
Safe: codersdk.ExperimentsAll,
Safe: codersdk.ExperimentsSafe,
})
}