Task #9611: Add support for writing DNS entries matrix.ungleich.cloud and matrix.0co2.cloud
This commit is contained in:
parent
5bb0c4cdda
commit
7986b825a7
31 changed files with 626 additions and 478 deletions
23
matrixhosting/migrations/0012_auto_20210808_1651.py
Normal file
23
matrixhosting/migrations/0012_auto_20210808_1651.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 3.2.4 on 2021-08-08 16:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('matrixhosting', '0011_alter_vminstance_vm_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='vminstance',
|
||||
name='homeserver_domain',
|
||||
field=models.CharField(blank=True, max_length=253, null=True, unique=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='vminstance',
|
||||
name='webclient_domain',
|
||||
field=models.CharField(blank=True, max_length=253, null=True, unique=True),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue