compass-web/v2.5/src/app/services/baseService.coffee

14 lines
332 B
CoffeeScript

define(['angular'
'angularTable'
'uiRouter'
'uiBootstrap'
], (ng)->
'use strict';
ng.module('compass.services', ['ngTable','ui.router','ui.bootstrap']).constant('settings',{
apiUrlBase: '/api'
metadataUrlBase: 'data'
monitoringUrlBase: '/monit/api/v1'
})
);