mirror of https://github.com/interlegis/sigi.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
623 B
22 lines
623 B
# -*- coding: utf-8 -*-
|
|
|
|
class MoodleRouter(object):
|
|
def db_for_read(self, model, **hints):
|
|
if model._meta.app_label == 'mdl':
|
|
return 'moodle'
|
|
return None
|
|
|
|
def db_for_write(self, model, **hints):
|
|
if model._meta.app_label == 'mdl':
|
|
return 'moodle'
|
|
return None
|
|
|
|
def allow_relation(self, obj1, obj2, **hints):
|
|
if obj1._meta.app_label == 'mdl' and obj2._meta.app_label == 'mdl':
|
|
return True
|
|
return None
|
|
|
|
def allow_migrate(self, db, model):
|
|
if model._meta.app_label == 'mdl':
|
|
return False
|
|
return None
|