Browse Source

Add ability for plugins to alter video jsonld

tags/v5.1.0
Chocobozzz 3 weeks ago
parent
commit
230af3e7db
No known key found for this signature in database GPG Key ID: 583A612D890159BE
1 changed files with 0 additions and 9 deletions
  1. +0
    -9
      client/src/app/core/plugins/hooks.service.ts

+ 0
- 9
client/src/app/core/plugins/hooks.service.ts View File

@@ -48,15 +48,6 @@ export class HooksService {
return this.pluginService.runHook(hookResultName, result, params)
}

async wrapFunResult <P, R, H extends ClientFilterHookName>
(fun: RawFunction<P, R>, params: P, scope: PluginClientScope, hookResultName: H) {
await this.pluginService.ensurePluginsAreLoaded(scope)

const result = fun(params)

return this.pluginService.runHook(hookResultName, result, params)
}

runAction<T, U extends ClientActionHookName> (hookName: U, scope: PluginClientScope, params?: T) {
// Use setTimeout to give priority to Angular change detector
setTimeout(() => {


Loading…
Cancel
Save