mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 18:56:06 +00:00
dea4c6f9c7
* refactor(core): expose some utils and constants * feat(plugin-workfow): add sort and pagination to query node params * fix(plugin-workflow): fix job result json style * fix(plugin-workflow): fix sort param * fix(plugin-workflow): fix test cases
44 lines
799 B
TypeScript
44 lines
799 B
TypeScript
import { Cache } from '@nocobase/cache';
|
|
import { Database } from '@nocobase/database';
|
|
import { Action } from '@nocobase/resourcer';
|
|
import Koa from 'koa';
|
|
import lodash from 'lodash';
|
|
import * as actions from './actions';
|
|
|
|
export * as utils from './utils';
|
|
|
|
export * from './constants';
|
|
|
|
export type Next = () => Promise<any>;
|
|
|
|
export interface Context extends Koa.Context {
|
|
db: Database;
|
|
cache: Cache;
|
|
action: Action;
|
|
body: any;
|
|
app: any;
|
|
|
|
[key: string]: any;
|
|
}
|
|
|
|
export function registerActions(api: any) {
|
|
api.actions(
|
|
lodash.pick(actions, [
|
|
'add',
|
|
'create',
|
|
'destroy',
|
|
'get',
|
|
'list',
|
|
'remove',
|
|
'set',
|
|
'toggle',
|
|
'update',
|
|
'move',
|
|
'firstOrCreate',
|
|
'updateOrCreate',
|
|
]),
|
|
);
|
|
}
|
|
|
|
export default actions;
|