1
0
Fork 0

Merge branch 'main' into pylint-update

This commit is contained in:
Mouse Reeve 2021-09-18 07:46:12 -07:00
commit be86fbcf4d
21 changed files with 268 additions and 24 deletions

View file

@ -311,6 +311,12 @@ class EmailBlocklistForm(CustomForm):
fields = ["domain"]
class IPBlocklistForm(CustomForm):
class Meta:
model = models.IPBlocklist
fields = ["address"]
class ServerForm(CustomForm):
class Meta:
model = models.FederatedServer