(className, triggerType, applicationId)
| 210 | } |
| 211 | |
| 212 | export function getTrigger(className, triggerType, applicationId) { |
| 213 | if (!applicationId) { |
| 214 | throw 'Missing ApplicationID'; |
| 215 | } |
| 216 | return get(Category.Triggers, `${triggerType}.${className}`, applicationId); |
| 217 | } |
| 218 | |
| 219 | export async function runTrigger(trigger, name, request, auth) { |
| 220 | if (!trigger) { |
no test coverage detected