Skip to content

Commit 8a0448c

Browse files
authored
chore: hide business central by default (#311)
1 parent ea9085a commit 8a0448c

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.26 on 2025-12-05 10:18
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('orgs', '0010_alter_org_is_org_rebranded'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='org',
15+
name='allow_dynamics',
16+
field=models.BooleanField(default=False, help_text='Allow Dynamics'),
17+
),
18+
]

apps/orgs/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Org(models.Model):
2121
is_org_rebranded = models.BooleanField(default=True, help_text='Is Org Rebranded')
2222
allow_travelperk = models.BooleanField(default=True, help_text='Allow Travelperk')
2323
allow_gusto = models.BooleanField(default=False, help_text='Allow Gusto')
24-
allow_dynamics = models.BooleanField(default=True, help_text='Allow Dynamics')
24+
allow_dynamics = models.BooleanField(default=False, help_text='Allow Dynamics')
2525
allow_qbd_direct_integration = models.BooleanField(default=True, help_text='Allow QBD Direct Integration')
2626
created_at = models.DateTimeField(auto_now_add=True, help_text='Created at datetime')
2727
updated_at = models.DateTimeField(auto_now=True, help_text='Updated at datetime')

0 commit comments

Comments
 (0)