Skip to content

Commit 1ccad42

Browse files
committed
fix(pr): Default to allow
1 parent 42c647d commit 1ccad42

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/sentry/migrations/0626_add_member_project_creation_bitfield.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Migration(CheckedMigration):
3737
"disable_new_visibility_features",
3838
"require_email_verification",
3939
"codecov_access",
40-
"disable_member_project_creation",
40+
"allow_member_project_creation",
4141
],
4242
default=1,
4343
),

src/sentry/models/organization.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ class flags(TypedClassBitField):
212212
# Enable codecov integration.
213213
codecov_access: bool
214214

215-
# Disable org-members from creating new projects
216-
disable_member_project_creation: bool
215+
# Allow org-members to create new projects
216+
allow_member_project_creation: bool
217217

218218
bitfield_default = 1
219219

0 commit comments

Comments
 (0)