@@ -5,31 +5,33 @@ type Service string
55
66// The list of registered services that publish scopes and/or roles.
77const (
8- Amp Service = "amp"
9- CodyGateway Service = "cody_gateway"
10- Dotcom Service = "dotcom"
11- SAMS Service = "sams"
12- TelemetryGateway Service = "telemetry_gateway"
13- EnterprisePortal Service = "enterprise_portal"
14- MailGatekeeper Service = "mail_gatekeeper"
15- Workspaces Service = "workspaces"
16- SSC Service = "ssc"
17- Analytics Service = "analytics"
18- CloudAPI Service = "cloud_api"
8+ Amp Service = "amp"
9+ CodyGateway Service = "cody_gateway"
10+ Dotcom Service = "dotcom"
11+ SAMS Service = "sams"
12+ TelemetryGateway Service = "telemetry_gateway"
13+ EnterprisePortal Service = "enterprise_portal"
14+ MailGatekeeper Service = "mail_gatekeeper"
15+ Workspaces Service = "workspaces"
16+ SSC Service = "ssc"
17+ Analytics Service = "analytics"
18+ CloudAPI Service = "cloud_api"
19+ ReleaseOperations Service = "releaseoperations"
1920)
2021
2122var serviceNames = map [Service ]string {
22- Amp : "Amp" ,
23- CodyGateway : "Cody Gateway" ,
24- Dotcom : "Sourcegraph Dotcom" ,
25- SAMS : "Sourcegraph Accounts Management System" ,
26- TelemetryGateway : "Telemetry Gateway" ,
27- EnterprisePortal : "Enterprise Portal" ,
28- MailGatekeeper : "Mail Gatekeeper" ,
29- Workspaces : "Workspaces" ,
30- SSC : "Self Serve Cody" ,
31- Analytics : "Sourcegraph Analytics" ,
32- CloudAPI : "Cloud API" ,
23+ Amp : "Amp" ,
24+ CodyGateway : "Cody Gateway" ,
25+ Dotcom : "Sourcegraph Dotcom" ,
26+ SAMS : "Sourcegraph Accounts Management System" ,
27+ TelemetryGateway : "Telemetry Gateway" ,
28+ EnterprisePortal : "Enterprise Portal" ,
29+ MailGatekeeper : "Mail Gatekeeper" ,
30+ Workspaces : "Workspaces" ,
31+ SSC : "Self Serve Cody" ,
32+ Analytics : "Sourcegraph Analytics" ,
33+ CloudAPI : "Cloud API" ,
34+ ReleaseOperations : "Release Operations" ,
3335}
3436
3537func (s Service ) DisplayName () string {
0 commit comments