MCPcopy Index your code
hub / github.com/parse-community/parse-server / addFunction

Function addFunction

src/triggers.js:150–153  ·  view source on GitHub ↗
(functionName, handler, validationHandler, applicationId)

Source from the content-addressed store, hash-verified

148}
149
150export function addFunction(functionName, handler, validationHandler, applicationId) {
151 add(Category.Functions, functionName, handler, applicationId);
152 add(Category.Validators, functionName, validationHandler, applicationId);
153}
154
155export function addJob(jobName, handler, applicationId) {
156 add(Category.Jobs, jobName, handler, applicationId);

Callers

nothing calls this directly

Calls 1

addFunction · 0.85

Tested by

no test coverage detected