mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
633 B
22 lines
633 B
class LegacyRouter(object):
|
|
|
|
def db_for_read(self, model, **hints):
|
|
if model._meta.app_label == 'legacy':
|
|
return 'legacy'
|
|
return None
|
|
|
|
def db_for_write(self, model, **hints):
|
|
if model._meta.app_label == 'legacy':
|
|
return 'legacy'
|
|
return None
|
|
|
|
def allow_relation(self, obj1, obj2, **hints):
|
|
if obj1._meta.app_label == 'legacy' \
|
|
and obj2._meta.app_label == 'legacy':
|
|
return True
|
|
return None
|
|
|
|
def allow_migrate(self, db, model):
|
|
if model._meta.app_label == 'legacy':
|
|
return False
|
|
return None
|
|
|