Support users with no shared inbox

This commit is contained in:
Mouse Reeve
2020-02-07 13:39:48 -08:00
parent 9360f4512c
commit ef2209e77b
6 changed files with 12 additions and 8 deletions

View File

@ -1,4 +1,4 @@
# Generated by Django 3.0.2 on 2020-01-30 02:26
# Generated by Django 3.0.2 on 2020-02-01 00:22
from django.conf import settings
import django.contrib.auth.models
@ -37,7 +37,7 @@ class Migration(migrations.Migration):
('api_key', models.CharField(blank=True, max_length=255, null=True)),
('actor', models.CharField(max_length=255, unique=True)),
('inbox', models.CharField(max_length=255, unique=True)),
('shared_inbox', models.CharField(max_length=255)),
('shared_inbox', models.CharField(blank=True, max_length=255, null=True)),
('outbox', models.CharField(max_length=255, unique=True)),
('summary', models.TextField(blank=True, null=True)),
('local', models.BooleanField(default=True)),