think/packages/domains/lib/api/star.js

46 lines
1005 B
TypeScript
Raw Normal View History

"use strict";
exports.__esModule = true;
exports.StarApiDefinition = void 0;
exports.StarApiDefinition = {
/**
*
*/
toggle: {
method: 'post',
server: 'toggle',
client: function () { return '/star/toggle'; }
},
/**
*
*/
check: {
method: 'post',
server: 'check',
client: function () { return '/star/check'; }
},
/**
*
*/
wikis: {
method: 'get',
server: 'wikis',
client: function () { return '/star/wikis'; }
},
/**
*
*/
wikiDocuments: {
method: 'get',
server: 'wiki/documents',
client: function () { return '/star/wiki/documents'; }
},
/**
*
*/
documents: {
method: 'get',
server: 'documents',
client: function () { return '/star/documents'; }
}
};