mirror of https://github.com/zulip/zulip.git
realm: Don't allow changing enable_spectator_access to True on limited plan.
We do not allow changing enable_spectator_access to True using API on limited plan realms. Frontend changes have been done previously. This is a follow-up of #22179.
This commit is contained in:
parent
e653bb2733
commit
5a29f4133b
|
@ -1373,6 +1373,16 @@ class RealmAPITest(ZulipTestCase):
|
||||||
realm = get_realm("zulip")
|
realm = get_realm("zulip")
|
||||||
self.assertEqual(realm.invite_to_realm_policy, Realm.POLICY_ADMINS_ONLY)
|
self.assertEqual(realm.invite_to_realm_policy, Realm.POLICY_ADMINS_ONLY)
|
||||||
|
|
||||||
|
def test_enable_spectator_access_for_limited_plan_realms(self) -> None:
|
||||||
|
self.login("iago")
|
||||||
|
realm = get_realm("zulip")
|
||||||
|
do_change_realm_plan_type(realm, Realm.PLAN_TYPE_LIMITED, acting_user=None)
|
||||||
|
self.assertFalse(realm.enable_spectator_access)
|
||||||
|
|
||||||
|
req = {"enable_spectator_access": orjson.dumps(True).decode()}
|
||||||
|
result = self.client_patch("/json/realm", req)
|
||||||
|
self.assert_json_error(result, "Available on Zulip Cloud Standard. Upgrade to access.")
|
||||||
|
|
||||||
|
|
||||||
class ScrubRealmTest(ZulipTestCase):
|
class ScrubRealmTest(ZulipTestCase):
|
||||||
def test_scrub_realm(self) -> None:
|
def test_scrub_realm(self) -> None:
|
||||||
|
|
|
@ -179,6 +179,9 @@ def update_realm(
|
||||||
if invite_to_realm_policy is not None and not user_profile.is_realm_owner:
|
if invite_to_realm_policy is not None and not user_profile.is_realm_owner:
|
||||||
raise OrganizationOwnerRequired()
|
raise OrganizationOwnerRequired()
|
||||||
|
|
||||||
|
if enable_spectator_access:
|
||||||
|
realm.ensure_not_on_limited_plan()
|
||||||
|
|
||||||
data: Dict[str, Any] = {}
|
data: Dict[str, Any] = {}
|
||||||
|
|
||||||
message_content_delete_limit_seconds: Optional[int] = None
|
message_content_delete_limit_seconds: Optional[int] = None
|
||||||
|
|
Loading…
Reference in New Issue