mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 21:25:24 +00:00
set all guided tours as default
This commit is contained in:
parent
722dfb1bc8
commit
cc5284b090
2 changed files with 18 additions and 2 deletions
backend/src/baserow/core
|
@ -1,4 +1,4 @@
|
|||
# Generated by Django 5.0.13 on 2025-03-26 14:46
|
||||
# Generated by Django 5.0.13 on 2025-03-31 12:52
|
||||
|
||||
import django.contrib.postgres.fields
|
||||
from django.db import migrations, models
|
||||
|
@ -14,7 +14,22 @@ class Migration(migrations.Migration):
|
|||
model_name="userprofile",
|
||||
name="completed_guided_tours",
|
||||
field=django.contrib.postgres.fields.ArrayField(
|
||||
base_field=models.TextField(), blank=True, default=list, size=None
|
||||
base_field=models.TextField(),
|
||||
blank=True,
|
||||
default=["sidebar", "database", "builder"],
|
||||
null=True,
|
||||
size=None,
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="userprofile",
|
||||
name="completed_guided_tours",
|
||||
field=django.contrib.postgres.fields.ArrayField(
|
||||
base_field=models.TextField(),
|
||||
blank=True,
|
||||
default=list,
|
||||
null=True,
|
||||
size=None,
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
|
@ -221,6 +221,7 @@ class UserProfile(models.Model):
|
|||
base_field=models.TextField(),
|
||||
default=list,
|
||||
blank=True,
|
||||
null=True,
|
||||
)
|
||||
|
||||
def iat_before_last_password_change(self, iat: int) -> bool:
|
||||
|
|
Loading…
Add table
Reference in a new issue