mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
15 lines
361 B
Python
15 lines
361 B
Python
from httppusher import HttpPusher
|
|
|
|
|
|
def create_pusher(hs, pusherdict):
|
|
PUSHER_TYPES = {
|
|
"http": HttpPusher,
|
|
}
|
|
|
|
if hs.config.email_enable_notifs:
|
|
from emailpusher import EmailPusher
|
|
PUSHER_TYPES["email"] = EmailPusher
|
|
|
|
if pusherdict['kind'] in PUSHER_TYPES:
|
|
return PUSHER_TYPES[pusherdict['kind']](hs, pusherdict)
|