mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
feat: 将项目添加者变成组长
This commit is contained in:
parent
5064edfe11
commit
b33b77959c
@ -155,6 +155,7 @@ class ProjectList extends Component {
|
||||
: <ErrMsg type="noProject" />)
|
||||
}
|
||||
|
||||
|
||||
return (
|
||||
<div style={{ paddingTop: '24px' }} className="m-panel card-panel card-panel-s project-list" >
|
||||
<Row className="project-list-header">
|
||||
@ -177,7 +178,7 @@ class ProjectList extends Component {
|
||||
</Col>);
|
||||
}) : <ErrMsg type="noProject" />} */}
|
||||
{
|
||||
/owner/.test(this.props.currGroup.role) ? <OwnerSpace /> : projectData.length ? projectData.map((item, index) => {
|
||||
this.props.currGroup.type === 'private' ? <OwnerSpace /> : projectData.length ? projectData.map((item, index) => {
|
||||
return (
|
||||
<Col xs={8} md={6} xl={4} key={index}>
|
||||
<ProjectCard projectData={item} callbackResult={this.receiveRes} />
|
||||
|
@ -167,11 +167,7 @@ class View extends Component {
|
||||
}
|
||||
}
|
||||
|
||||
componentWillUpdate() {
|
||||
if (!this.props.curData.title && this.state.init) {
|
||||
this.setState({ init: false });
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
const dataSource = [];
|
||||
if (this.props.curData.req_headers && this.props.curData.req_headers.length) {
|
||||
|
@ -180,11 +180,18 @@ class projectController extends baseController {
|
||||
up_time: yapi.commons.time()
|
||||
})
|
||||
}
|
||||
let uid = this.getUid();
|
||||
// 将项目添加者变成项目组长,除admin以外
|
||||
if (this.getRole() !== 'admin') {
|
||||
let userdata = await this.getUserdata(uid, 'owner')
|
||||
await this.Model.addMember(result._id, [userdata])
|
||||
|
||||
}
|
||||
let username = this.getUsername();
|
||||
yapi.commons.saveLog({
|
||||
content: `<a href="/user/profile/${this.getUid()}">${username}</a> 添加了项目 <a href="/project/${result._id}">${params.name}</a>`,
|
||||
type: 'project',
|
||||
uid: this.getUid(),
|
||||
uid,
|
||||
username: username,
|
||||
typeid: result._id
|
||||
});
|
||||
@ -338,7 +345,7 @@ class projectController extends baseController {
|
||||
async get(ctx) {
|
||||
let params = ctx.params;
|
||||
let result = await this.Model.getBaseInfo(params.id);
|
||||
|
||||
|
||||
if (!result) {
|
||||
return ctx.body = yapi.commons.resReturn(null, 400, '不存在的项目');
|
||||
}
|
||||
|
@ -13,7 +13,7 @@ const WEBROOT_LOG = path.join(WEBROOT_RUNTIME, 'log');
|
||||
const WEBCONFIG = config;
|
||||
|
||||
fs.ensureDirSync(WEBROOT_LOG);
|
||||
console.log('mail', WEBCONFIG.mail)
|
||||
// console.log('mail', WEBCONFIG.mail)
|
||||
|
||||
if (WEBCONFIG.mail && WEBCONFIG.mail.enable) {
|
||||
|
||||
|
@ -79,7 +79,9 @@ module.exports = {
|
||||
],
|
||||
commonsChunk: {
|
||||
vendors: {
|
||||
lib: ['react', 'redux',
|
||||
lib: [
|
||||
'react',
|
||||
'redux',
|
||||
'redux-thunk',
|
||||
'react-dom',
|
||||
'redux-promise',
|
||||
@ -131,6 +133,10 @@ module.exports = {
|
||||
baseConfig.resolve.alias.common = '/common';
|
||||
baseConfig.resolve.alias.plugins = '/node_modules';
|
||||
baseConfig.resolve.alias.exts = '/exts';
|
||||
|
||||
// baseConfig.resolve.alias.react = 'anujs';
|
||||
// baseConfig.resolve.alias['react-dom'] = 'anujs';
|
||||
|
||||
baseConfig.output.prd.path = 'static/prd';
|
||||
baseConfig.output.prd.publicPath = '';
|
||||
baseConfig.output.prd.filename = '[name]@[chunkhash][ext]'
|
||||
|
Loading…
x
Reference in New Issue
Block a user