mirror of
https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare.git
synced 2025-01-30 17:14:53 +01:00
2197e07213
* fixed visualization * simplified tests * split into files * refactored test expected publications * split update tests * expanded specifications and tests * added event_status window tests * fixed 'all' command * renamed everything * fixed uppercase * refactored main and publisher to add notifications * tested report successful * added tests to publisher coordinator * added more coordinator tests * test coordinator success
12 lines
371 B
Python
12 lines
371 B
Python
import mobilizon_reshare.config.notifiers
|
|
import mobilizon_reshare.config.publishers
|
|
from mobilizon_reshare.config.config import get_settings
|
|
|
|
|
|
def get_active_publishers():
|
|
return mobilizon_reshare.config.publishers.get_active_publishers(get_settings())
|
|
|
|
|
|
def get_active_notifiers():
|
|
return mobilizon_reshare.config.notifiers.get_active_notifiers(get_settings())
|