Import applications and return an iterable of app configs.
(self)
| 143 | raise AppRegistryNotReady("Models aren't loaded yet.") |
| 144 | |
| 145 | def get_app_configs(self): |
| 146 | """Import applications and return an iterable of app configs.""" |
| 147 | self.check_apps_ready() |
| 148 | return self.app_configs.values() |
| 149 | |
| 150 | def get_app_config(self, app_label): |
| 151 | """ |