Add federated users

This commit is contained in:
Mouse Reeve
2020-01-29 12:07:20 -08:00
parent a9d938fbb2
commit f031b46b20
4 changed files with 28 additions and 22 deletions

View File

@ -1,4 +1,4 @@
# Generated by Django 3.0.2 on 2020-01-29 18:40
# Generated by Django 3.0.2 on 2020-01-29 19:58
from django.conf import settings
import django.contrib.auth.models
@ -32,8 +32,8 @@ class Migration(migrations.Migration):
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')),
('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')),
('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')),
('private_key', models.TextField(blank=True, null=True, unique=True)),
('public_key', models.TextField(blank=True, null=True, unique=True)),
('private_key', models.TextField(blank=True, null=True)),
('public_key', models.TextField(blank=True, null=True)),
('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)),