(self)
| 161 | |
| 162 | @hook(AFTER_CREATE) |
| 163 | def create_subscription_cache(self): # type: ignore[no-untyped-def] |
| 164 | if is_saas() and not self.has_subscription_information_cache(): |
| 165 | OrganisationSubscriptionInformationCache.objects.create(organisation=self) |
| 166 | |
| 167 | @hook(AFTER_SAVE) |
| 168 | def clear_environment_caches(self): # type: ignore[no-untyped-def] |
nothing calls this directly
no test coverage detected