Currently when an admin-sys want to expired an organization, it need to set is_expired in the datamodel to true but _expired_on is not updated.
We should instead only rely on _expired_on since we can achieve the same behavior as with is_expired.
This does not need to break the existing API has we can easily set _expired_on to now() when patching is_expired is true.
And similarly, we can return is_expired if the date is due.
Currently when an admin-sys want to expired an organization, it need to set
is_expiredin the datamodel to true but_expired_onis not updated.We should instead only rely on
_expired_onsince we can achieve the same behavior as withis_expired.This does not need to break the existing API has we can easily set
_expired_ontonow()when patchingis_expiredis true.And similarly, we can return
is_expiredif the date is due.