mirror of
https://github.com/retspen/webvirtcloud
synced 2025-07-31 12:41:08 +00:00
Some improvements for appsettings app
This commit is contained in:
parent
7eee811e65
commit
bb8f95be14
5 changed files with 43 additions and 3 deletions
10
appsettings/middleware.py
Normal file
10
appsettings/middleware.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from .settings import app_settings, get_settings
|
||||
|
||||
|
||||
class AppSettingsMiddleware(object):
|
||||
def __init__(self, get_response):
|
||||
self.get_response = get_response
|
||||
|
||||
def __call__(self, request):
|
||||
get_settings()
|
||||
return self.get_response(request)
|
||||
Loading…
Add table
Add a link
Reference in a new issue