mirror of
https://github.com/YMFE/yapi.git
synced 2024-11-27 04:40:08 +08:00
fix: 修改ydoc里面的链接
This commit is contained in:
parent
b105053c48
commit
360433c41d
@ -6,6 +6,7 @@
|
||||
#### Bug Fixed
|
||||
|
||||
* 新建接口自动添加为项目成员
|
||||
* 修复type为raw header type 为form 时运行body 为空问题
|
||||
|
||||
|
||||
### v1.3.17
|
||||
|
@ -67,8 +67,8 @@ node server/app.js //启动服务器后,请访问 127.0.0.1:{config.json配置
|
||||
## 服务器管理
|
||||
|
||||
推荐使用 pm2 管理 node 服务器启动,停止,具体使用方法可参考下面的教程:
|
||||
* <a href="http://pm2.keymetrics.io/docs/usage/quick-start/">官网文档</a>
|
||||
* <a href="http://imweb.io/topic/57c8cbb27f226f687b365636">PM2实用入门指南</a>
|
||||
* <a href="http://pm2.keymetrics.io/docs/usage/quick-start/" target="_blank">官网文档</a>
|
||||
* <a href="http://imweb.io/topic/57c8cbb27f226f687b365636" target="_blank">PM2实用入门指南</a>
|
||||
|
||||
## 升级
|
||||
升级项目版本是非常容易的,并且不会影响已有的项目数据,只会同步 vendors 目录下的源码文件。
|
||||
@ -97,7 +97,7 @@ node server/app.js //启动服务器后,请访问 127.0.0.1:{config.json配置
|
||||
}
|
||||
}
|
||||
```
|
||||
如何申请STMP服务器账号和密码可以参考下面的教程:<a href="https://jingyan.baidu.com/article/fdbd42771da9b0b89e3f48a8.html">如何开通电子邮箱的SMTP功能</a>
|
||||
如何申请STMP服务器账号和密码可以参考下面的教程:<a href="https://jingyan.baidu.com/article/fdbd42771da9b0b89e3f48a8.html" target="_blank">如何开通电子邮箱的SMTP功能</a>
|
||||
|
||||
|
||||
## 配置LDAP登录
|
||||
|
@ -119,7 +119,7 @@ proxy_pass http://yapi.xxx.com/mock/2817/baseapi; #baseapi后面没有"/"
|
||||
|
||||
上面通过正则匹配,将所有接口转到 http://yapi.xxx.com 上,比如 `http://localhost/api/user/status` 会成为 `http://yapi.xxx.com/mock/58/api/user/status`
|
||||
|
||||
详细使用指南: <a target="_blank" href="https://ykit.ymfe.org/plugins-mock.html#获取远程数据_Map_Remote_">ykit-config-mock</a>
|
||||
详细使用指南: <a target="_blank" href="https://ykit.ymfe.org/plugin/ykit-config-mock.html">ykit-config-mock</a>
|
||||
|
||||
|
||||
|
||||
|
@ -322,7 +322,8 @@ class openController extends baseController {
|
||||
const starUsers = list.map(item => item.uid);
|
||||
|
||||
const projectList = await this.projectModel.get(projectId);
|
||||
const projectMenbers = projectList.members.map(item => item.uid);
|
||||
const projectMenbers = projectList.members.filter(item => item.email_notice).map(item => item.uid);
|
||||
|
||||
|
||||
const users = this.arrUnique(projectMenbers, starUsers);
|
||||
const usersInfo = await this.userModel.findByUids(users);
|
||||
|
Loading…
Reference in New Issue
Block a user