1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-07 09:51:26 +00:00

Org active (#7496)

* admin set org active/inactive

* update

* update

* update
This commit is contained in:
lian
2025-02-27 11:12:48 +08:00
committed by GitHub
parent ea3a7798b9
commit a7fb61a4d4
10 changed files with 172 additions and 17 deletions

View File

@@ -608,6 +608,9 @@ class SystemAdminAPI {
if (orgInfo.role) {
formData.append('role', orgInfo.role);
}
if (orgInfo.isActive != undefined) {
formData.append('is_active', orgInfo.isActive);
}
return this.req.put(url, formData);
}