mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-17 06:30:28 +00:00
9 lines
251 B
Python
9 lines
251 B
Python
from .single_inheritance import Inheritance as BaseInheritance
|
|
|
|
|
|
class Inheritance(BaseInheritance):
|
|
|
|
def ALLOWED_HOSTS(self):
|
|
allowed_hosts = super().ALLOWED_HOSTS[:]
|
|
allowed_hosts.append('test-test')
|
|
return allowed_hosts
|