Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 345 Bytes

DOC-SERVER.md

File metadata and controls

12 lines (11 loc) · 345 Bytes

OpenVeo server API code documentation

This is the API of the OpenVeo server which can be used by plugins developers.

Usage

const coreApi = process.api.getCoreApi();
console.log(coreApi.getDatabase());
console.log(coreApi.getSuperAdminId());
console.log(coreApi.getEntities());
console.log(coreApi.getPermissions());
[...]