def initialize(self):
     self.__model = NotificationsModel()
     self.__actionsHandlers = NotificationsActionsHandlers()
     self.__alertsController = AlertController(self.__model)
     self.__layoutController = LayoutController(self.__model)
     self.__visibilityController = NotificationVisibilityController(
         self.__model)
     self.__visibilityController.registerNotifications(
         (NOTIFICATION_TYPE.CLUB_INVITE, ))
Exemplo n.º 2
0
 def initialize(self):
     self.__model = NotificationsModel()
     self.__actionsHandlers = NotificationsActionsHandlers()
     self.__alertsController = AlertController(self.__model)
     self.__layoutController = LayoutController(self.__model)
Exemplo n.º 3
0
 def initialize(self):
     self.__model = NotificationsModel()
     self.__alertsController = AlertController(self.__model)
     self.__listController = ListController(self.__model)
     self.__layoutController = LayoutController(self.__model)