summaryrefslogtreecommitdiff
path: root/gentoobrowse-api/service/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gentoobrowse-api/service/main.cpp')
-rw-r--r--gentoobrowse-api/service/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/gentoobrowse-api/service/main.cpp b/gentoobrowse-api/service/main.cpp
index bdf6ed5..b7b18a2 100644
--- a/gentoobrowse-api/service/main.cpp
+++ b/gentoobrowse-api/service/main.cpp
@@ -4,6 +4,8 @@
#include "portageimpl.h"
#include "usersimpl.h"
#include "maintenanceimpl.h"
+#include "notificationsimpl.h"
+#include "mailserverimpl.h"
namespace Gentoo {
namespace Service {
@@ -15,6 +17,8 @@ class Api : public IceTray::Service {
adp->add(new Portage(db), ic->stringToIdentity("portage"));
adp->add(new Maintenance(db), ic->stringToIdentity("maintenance"));
adp->add(new Users(db), ic->stringToIdentity("users"));
+ adp->add(new Notifications(), ic->stringToIdentity("notifications"));
+ adp->add(new MailServer(), ic->stringToIdentity("mailserver"));
}
};