Accept follow requests

This commit is contained in:
Mouse Reeve
2020-01-26 18:49:57 -08:00
parent 6b85d8838f
commit 19f6ebb9a7
6 changed files with 70 additions and 17 deletions

View File

@ -1,4 +1,4 @@
# Generated by Django 2.0.13 on 2020-01-27 01:47
# Generated by Django 2.0.13 on 2020-01-27 02:41
from django.conf import settings
import django.contrib.auth.models
@ -34,9 +34,9 @@ class Migration(migrations.Migration):
('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')),
('activitypub_id', models.CharField(max_length=255)),
('private_key', models.TextField(blank=True, null=True)),
('public_key', models.TextField()),
('public_key', models.TextField(blank=True, null=True)),
('api_key', models.CharField(blank=True, max_length=255, null=True)),
('actor', django.contrib.postgres.fields.jsonb.JSONField()),
('actor', django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True)),
('local', models.BooleanField(default=True)),
('created_date', models.DateTimeField(auto_now_add=True)),
('updated_date', models.DateTimeField(auto_now=True)),