mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
7 lines
162 B
Python
7 lines
162 B
Python
from django.apps import apps
|
|
|
|
|
|
def get_site_conf():
|
|
SiteConfiguration = apps.get_model("portal", "SiteConfiguration")
|
|
return SiteConfiguration.get_solo()
|