diff --git a/enterprise/app/org/org_form.tsx b/enterprise/app/org/org_form.tsx index 93076498023..f85cc3cb602 100644 --- a/enterprise/app/org/org_form.tsx +++ b/enterprise/app/org/org_form.tsx @@ -193,7 +193,7 @@ export default abstract class OrgForm extends React.Comp name="sharingEnabled" checked={request.sharingEnabled} /> - Allow members of this org to make builds public (viewable by anyone with a link) + Allow members of this org to make builds public (viewable by anyone with a link, including all build artifacts) )} {capabilities.userOwnedExecutors && ( diff --git a/server/tables/tables.go b/server/tables/tables.go index 2e22178659b..25728564cf7 100644 --- a/server/tables/tables.go +++ b/server/tables/tables.go @@ -225,7 +225,7 @@ type Group struct { GithubToken *string Model - SharingEnabled bool `gorm:"default:1"` + SharingEnabled bool `gorm:"default:0"` UserOwnedKeysEnabled bool `gorm:"not null;default:0"` BotSuggestionsEnabled bool `gorm:"not null;default:1"` CodeSearchEnabled bool `gorm:"not null;default:0"`