mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
create event for avatar_lookup hook
This commit is contained in:
parent
d34861ee96
commit
68b604812c
6 changed files with 18 additions and 4 deletions
|
@ -57,6 +57,7 @@ class HookEventBridgeTest extends TestCase
|
|||
ArrayFilterEvent::REVOKE_FOLLOW_CONTACT => 'onArrayFilterEvent',
|
||||
ArrayFilterEvent::BLOCK_CONTACT => 'onArrayFilterEvent',
|
||||
ArrayFilterEvent::UNBLOCK_CONTACT => 'onArrayFilterEvent',
|
||||
ArrayFilterEvent::AVATAR_LOOKUP => 'onArrayFilterEvent',
|
||||
ArrayFilterEvent::ADD_WORKER_TASK => 'onArrayFilterEvent',
|
||||
ArrayFilterEvent::STORAGE_CONFIG => 'onArrayFilterEvent',
|
||||
ArrayFilterEvent::STORAGE_INSTANCE => 'onArrayFilterEvent',
|
||||
|
@ -295,6 +296,7 @@ class HookEventBridgeTest extends TestCase
|
|||
[ArrayFilterEvent::REVOKE_FOLLOW_CONTACT, 'revoke_follow'],
|
||||
[ArrayFilterEvent::BLOCK_CONTACT, 'block'],
|
||||
[ArrayFilterEvent::UNBLOCK_CONTACT, 'unblock'],
|
||||
[ArrayFilterEvent::AVATAR_LOOKUP, 'avatar_lookup'],
|
||||
[ArrayFilterEvent::ADD_WORKER_TASK, 'proc_run'],
|
||||
[ArrayFilterEvent::STORAGE_CONFIG, 'storage_config'],
|
||||
[ArrayFilterEvent::STORAGE_INSTANCE, 'storage_instance'],
|
||||
|
|
|
@ -54,6 +54,7 @@ class ArrayFilterEventTest extends TestCase
|
|||
[ArrayFilterEvent::REVOKE_FOLLOW_CONTACT, 'friendica.data.revoke_follow_contact'],
|
||||
[ArrayFilterEvent::BLOCK_CONTACT, 'friendica.data.block_contact'],
|
||||
[ArrayFilterEvent::UNBLOCK_CONTACT, 'friendica.data.unblock_contact'],
|
||||
[ArrayFilterEvent::AVATAR_LOOKUP, 'friendica.data.avatar_lookup'],
|
||||
[ArrayFilterEvent::ADD_WORKER_TASK, 'friendica.data.add_worker_task'],
|
||||
[ArrayFilterEvent::STORAGE_CONFIG, 'friendica.data.storage_config'],
|
||||
[ArrayFilterEvent::STORAGE_INSTANCE, 'friendica.data.storage_instance'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue