File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ func newConfig() codersdk.DeploymentConfig {
93
93
},
94
94
GitAuth : codersdk.DeploymentConfigField [[]codersdk.DeploymentConfigGitAuth ]{
95
95
Key : "gitauth" ,
96
- Usage : "Git Authentication " ,
96
+ Usage : "Automatically authenticate Git inside workspaces. " ,
97
97
Flag : "gitauth" ,
98
98
Value : []codersdk.DeploymentConfigGitAuth {},
99
99
},
Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ export const AppRouter: FC = () => {
267
267
element = {
268
268
< AuthAndFrame >
269
269
< RequirePermission
270
- isFeatureVisible = { Boolean ( permissions ?. viewDeploymentFlags ) }
270
+ isFeatureVisible = { Boolean ( permissions ?. viewDeploymentConfig ) }
271
271
>
272
272
< DeploySettingsLayout >
273
273
< GeneralSettingsPage />
@@ -281,7 +281,7 @@ export const AppRouter: FC = () => {
281
281
element = {
282
282
< AuthAndFrame >
283
283
< RequirePermission
284
- isFeatureVisible = { Boolean ( permissions ?. viewDeploymentFlags ) }
284
+ isFeatureVisible = { Boolean ( permissions ?. viewDeploymentConfig ) }
285
285
>
286
286
< DeploySettingsLayout >
287
287
< SecuritySettingsPage />
@@ -295,7 +295,7 @@ export const AppRouter: FC = () => {
295
295
element = {
296
296
< AuthAndFrame >
297
297
< RequirePermission
298
- isFeatureVisible = { Boolean ( permissions ?. viewDeploymentFlags ) }
298
+ isFeatureVisible = { Boolean ( permissions ?. viewDeploymentConfig ) }
299
299
>
300
300
< DeploySettingsLayout >
301
301
< NetworkSettingsPage />
@@ -309,7 +309,7 @@ export const AppRouter: FC = () => {
309
309
element = {
310
310
< AuthAndFrame >
311
311
< RequirePermission
312
- isFeatureVisible = { Boolean ( permissions ?. viewDeploymentFlags ) }
312
+ isFeatureVisible = { Boolean ( permissions ?. viewDeploymentConfig ) }
313
313
>
314
314
< DeploySettingsLayout >
315
315
< AuthSettingsPage />
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const Navbar: React.FC = () => {
22
22
featureVisibility [ FeatureNames . AuditLog ] &&
23
23
Boolean ( permissions ?. viewAuditLog )
24
24
const canViewDeployment =
25
- experimental && Boolean ( permissions ?. viewDeploymentFlags )
25
+ experimental && Boolean ( permissions ?. viewDeploymentConfig )
26
26
const onSignOut = ( ) => authSend ( "SIGN_OUT" )
27
27
28
28
return (
You can’t perform that action at this time.
0 commit comments