mirror of
https://github.com/jfmcbrayer/brutaldon
synced 2024-12-22 13:26:14 +01:00
73e105517c
Only supports single user, lots of display elements not supported yet. But it actually has something to show. Actually display a home timeline. Still only single user, doesn't correctly handle boosts, CWs, and probably a lot of other things.
25 lines
716 B
Python
25 lines
716 B
Python
# Generated by Django 2.0.1 on 2018-04-23 18:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Client',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.TextField(default='brutaldon')),
|
|
('api_base_id', models.URLField(default='mastodon.social')),
|
|
('client_id', models.TextField(blank=True, null=True)),
|
|
('client_secret', models.TextField(blank=True, null=True)),
|
|
],
|
|
),
|
|
]
|