mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
feat(coder): add authz_querier experiment (#5858)
* feat(coderd): add authz_querier experiment * coderdtest: wire up authz_querier * wire up AuthzQuerier in coderd * remove things that do not yet exist in this timeline * add newline * comment unreachable code
This commit is contained in:
@ -9,8 +9,12 @@ import (
|
||||
type Experiment string
|
||||
|
||||
const (
|
||||
// Add new experiments here!
|
||||
// ExperimentExample Experiment = "example"
|
||||
// ExperimentAuthzQuerier is an internal experiment that enables the ExperimentAuthzQuerier
|
||||
// interface for all RBAC operations. NOT READY FOR PRODUCTION USE.
|
||||
ExperimentAuthzQuerier Experiment = "authz_querier"
|
||||
|
||||
// Add new experiments here!
|
||||
// ExperimentExample Experiment = "example"
|
||||
)
|
||||
|
||||
var (
|
||||
|
Reference in New Issue
Block a user