Skip to content

Commit

Permalink
fix: Enable simplify report closures by default (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shwetabhk authored Oct 6, 2023
1 parent df733b2 commit 70ec944
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions apps/workspaces/migrations/0026_auto_20231006_0123.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.14 on 2023-10-06 01:23

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('workspaces', '0025_auto_20230823_1118'),
]

operations = [
migrations.AlterField(
model_name='exportsettings',
name='is_simplify_report_closure_enabled',
field=models.BooleanField(default=True, help_text='Simplify report closure is enabled'),
),
]
2 changes: 1 addition & 1 deletion apps/workspaces/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class ExportSettings(models.Model):
workspace = models.OneToOneField(Workspace, on_delete=models.PROTECT, help_text='Reference to Workspace model')
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')
is_simplify_report_closure_enabled = models.BooleanField(default=False,
is_simplify_report_closure_enabled = models.BooleanField(default=True,
help_text='Simplify report closure is enabled')

# Reimbursable Expenses Export Settings
Expand Down

0 comments on commit 70ec944

Please sign in to comment.