mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
10 lines
209 B
Python
10 lines
209 B
Python
from .base import Base
|
|
|
|
|
|
class Inheritance(Base):
|
|
|
|
@property
|
|
def ALLOWED_HOSTS(self):
|
|
allowed_hosts = super().ALLOWED_HOSTS[:]
|
|
allowed_hosts.append('test')
|
|
return allowed_hosts
|