1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 02:10:24 +00:00

Work winxin login and department (#3532)

* admin work weixin department

* list work weixin department members

* add work-weixin django app

* work weixin login

* add SocialAuthUser model and update uid

* update work weixin departments frontend

* improve admin work weixin login and departments

* add sysadmin react fake view and del sys_file_scan_records_react.html

* user bind work weixin account
This commit is contained in:
sniper-py
2019-05-28 11:44:19 +08:00
committed by Daniel Pan
parent 5389650033
commit d7c17005b6
27 changed files with 1285 additions and 71 deletions

View File

@@ -5,6 +5,7 @@ import { siteRoot, gettext } from '../../utils/constants';
import SidePanel from './side-panel';
import MainPanel from './main-panel';
import FileScanRecords from './file-scan-records';
import WorkWeixinDepartments from './work-weixin-departments'
import '../../assets/css/fa-solid.css';
import '../../assets/css/fa-regular.css';
@@ -48,6 +49,13 @@ class SysAdmin extends React.Component {
tabItemClick={this.tabItemClick}
/>
</Router>
<Router className="reach-router">
<WorkWeixinDepartments
path={siteRoot + 'sys/work-weixin/departments'}
currentTab={currentTab}
tabItemClick={this.tabItemClick}
/>
</Router>
</MainPanel>
</div>
);