Browse Source

refactor(nocodb): update hook response message

pull/5269/head
Wing-Kam Wong 2 years ago
parent
commit
e63c738392
  1. 2
      packages/nocodb/src/lib/controllers/hook.ctl.ts

2
packages/nocodb/src/lib/controllers/hook.ctl.ts

@ -50,7 +50,7 @@ export async function hookTest(req: Request<any, any>, res: Response) {
hookTest: req.body,
tableId: req.params.tableId,
});
res.json({ msg: 'Success' });
res.json({ msg: 'The hook has been tested successfully' });
}
export async function tableSampleData(req: Request, res: Response) {

Loading…
Cancel
Save