mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
40 lines
878 B
JavaScript
40 lines
878 B
JavaScript
const yapi = require('yapi.js');
|
|
const mongoose = require('mongoose');
|
|
const controller = require('./controller');
|
|
|
|
module.exports = function() {
|
|
yapi.connect.then(function() {
|
|
let Col = mongoose.connection.db.collection('wiki');
|
|
Col.createIndex({
|
|
project_id: 1
|
|
});
|
|
});
|
|
|
|
this.bindHook('add_router', function(addRouter) {
|
|
addRouter({
|
|
// 获取wiki信息
|
|
controller: controller,
|
|
method: 'get',
|
|
path: 'wiki_desc/get',
|
|
action: 'getWikiDesc'
|
|
});
|
|
|
|
addRouter({
|
|
// 更新wiki信息
|
|
controller: controller,
|
|
method: 'post',
|
|
path: 'wiki_desc/up',
|
|
action: 'uplodaWikiDesc'
|
|
});
|
|
});
|
|
|
|
this.bindHook('add_ws_router', function(wsRouter) {
|
|
wsRouter({
|
|
controller: controller,
|
|
method: 'get',
|
|
path: 'wiki_desc/solve_conflict',
|
|
action: 'wikiConflict'
|
|
});
|
|
});
|
|
};
|