Skip to content

Commit

Permalink
fix: allow dynamics by default (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
1 parent f486902 commit e112517
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions apps/orgs/migrations/0007_allow_dynamics_by_default.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.14 on 2024-12-17 07:05

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('orgs', '0006_org_allow_qbd_direct_integration'),
]

operations = [
migrations.AlterField(
model_name='org',
name='allow_dynamics',
field=models.BooleanField(default=True, help_text='Allow Dynamics'),
),
]
2 changes: 1 addition & 1 deletion apps/orgs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Org(models.Model):
is_sendgrid_connected = models.BooleanField(null=True, help_text='Is Sendgrid Connected')
allow_travelperk = models.BooleanField(default=True, help_text='Allow Travelperk')
allow_gusto = models.BooleanField(default=False, help_text='Allow Gusto')
allow_dynamics = models.BooleanField(default=False, help_text='Allow Dynamics')
allow_dynamics = models.BooleanField(default=True, help_text='Allow Dynamics')
allow_qbd_direct_integration = models.BooleanField(default=False, help_text='Allow QBD Direct Integration')
created_at = models.DateTimeField(auto_now_add=True, help_text='Created at datetime')
updated_at = models.DateTimeField(auto_now=True, help_text='Updated at datetime')
Expand Down

0 comments on commit e112517

Please sign in to comment.