blob: a28d4ce6ac44d4345f69efecb6965c2ac1023519 [file] [log] [blame]
module.exports = angular.module('settings-notifications', [
require('stf/settings').name
])
.run(['$templateCache', function($templateCache) {
$templateCache.put(
'settings/notifications/notifications.jade'
, require('./notifications.jade')
)
}])
.factory('NotificationsService', require('./notifications-service'))
.controller('NotificationsCtrl', require('./notifications-controller'))