From bb60eb4f759ae3d2defd00b0cf334a9bb626a047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=C5=BE=20Jerman?= Date: Tue, 24 Sep 2019 12:11:38 +0200 Subject: [PATCH] Hookup system and reminder services --- system/service/service.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/service/service.go b/system/service/service.go index 3020a7562..b9832bc85 100644 --- a/system/service/service.go +++ b/system/service/service.go @@ -72,6 +72,7 @@ var ( DefaultRole RoleService DefaultOrganisation OrganisationService DefaultApplication ApplicationService + DefaultReminder ReminderService ) func Init(ctx context.Context, log *zap.Logger, c Config) (err error) { @@ -92,6 +93,7 @@ func Init(ctx context.Context, log *zap.Logger, c Config) (err error) { DefaultRole = Role(ctx) DefaultOrganisation = Organisation(ctx) DefaultApplication = Application(ctx) + DefaultReminder = Reminder(ctx) // Authentication helpers & services DefaultAuthSettings, err = DefaultSettings.LoadAuthSettings()