See #170: expose/store actor URL over federation
This commit is contained in:
parent
447b7b164d
commit
b351ea67e2
10 changed files with 160 additions and 14 deletions
18
api/funkwhale_api/audio/migrations/0003_channel_rss_url.py
Normal file
18
api/funkwhale_api/audio/migrations/0003_channel_rss_url.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.10 on 2020-02-06 15:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('audio', '0002_channel_metadata'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='channel',
|
||||
name='rss_url',
|
||||
field=models.URLField(blank=True, max_length=500, null=True),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue