@eris@cybre.space also I use this script to add a list of domains to the list, you can pipe the output directly into rails c
list = open("allowlist.txt", "r")
for line in list.readlines():
if line.strip()[:8] == "https://":
print("DomainAllow.new(domain:'" + line.strip()[8:] + "').save")
else:
print("DomainAllow.new(domain:'" + line.strip() + "').save")