From d007fa661e2faf77e70cb75c8d520941e907ebf7 Mon Sep 17 00:00:00 2001 From: Sean Smith Date: Wed, 24 Mar 2021 17:22:54 -0400 Subject: Remove exposure of users on dashboard Signed-off-by: Sean Smith Change-Id: I83b93d9247a7eafb54e4a5761d1423a504d86400 --- src/account/migrations/0009_auto_20210324_2107.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/account/migrations/0009_auto_20210324_2107.py (limited to 'src/account/migrations/0009_auto_20210324_2107.py') diff --git a/src/account/migrations/0009_auto_20210324_2107.py b/src/account/migrations/0009_auto_20210324_2107.py new file mode 100644 index 0000000..baa7382 --- /dev/null +++ b/src/account/migrations/0009_auto_20210324_2107.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2 on 2021-03-24 21:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0008_auto_20210324_2106'), + ] + + operations = [ + migrations.AlterField( + model_name='userprofile', + name='public_user', + field=models.BooleanField(default=False), + ), + ] -- cgit 1.2.3-korg