Files
stf/res/app/settings/notifications/index.js
2016-01-19 23:08:33 +09:00

12 lines
416 B
JavaScript

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'))