1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-21 11:27:18 +00:00

modify sysadmin org api name (#4180)

This commit is contained in:
Leo
2019-10-23 15:25:52 +08:00
committed by Daniel Pan
parent 685e0e0a23
commit 1b5481c15f
5 changed files with 13 additions and 13 deletions

View File

@@ -134,12 +134,12 @@ class OrgGroups extends Component {
}
componentDidMount () {
seafileAPI.sysAdminGetOrgInfo(this.props.orgID).then((res) => {
seafileAPI.sysAdminGetOrg(this.props.orgID).then((res) => {
this.setState({
orgName: res.data.org_name
});
});
seafileAPI.sysAdminListAllOrgGroups(this.props.orgID).then((res) => {
seafileAPI.sysAdminListOrgGroups(this.props.orgID).then((res) => {
this.setState({
loading: false,
groupList: res.data.group_list