From e4c691d22a49087af83d7af879541b605a74bf08 Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Wed, 19 Sep 2012 16:04:06 +1200 Subject: [PATCH] Fixed notification services module name --- app/models/notification_services/campfire_service.rb | 2 +- config/initializers/notification_services.rb | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 config/initializers/notification_services.rb diff --git a/app/models/notification_services/campfire_service.rb b/app/models/notification_services/campfire_service.rb index 8b6d65e..b6e1604 100644 --- a/app/models/notification_services/campfire_service.rb +++ b/app/models/notification_services/campfire_service.rb @@ -1,4 +1,4 @@ -class NotificationService::CampfireService < NotificationService +class NotificationServices::CampfireService < NotificationService Label = "campfire" Fields = [ [:subdomain, { diff --git a/config/initializers/notification_services.rb b/config/initializers/notification_services.rb new file mode 100644 index 0000000..a92a29e --- /dev/null +++ b/config/initializers/notification_services.rb @@ -0,0 +1,2 @@ +# Include nested notification services models +include NotificationServices -- libgit2 0.21.2