Blame view

app/js/app.constant.js 473 Bytes
4bb02bb84   Rishav   new integration w...
1
2
3
4
5
6
  (function(){
  'use strict';
  
  	angular.module('acufuel')
  	
  	.constant('BASE_URL', {
80cd89afb   Mr. Hot Foods   vector maps
7
  		// url: 'http://54.149.169.33:8080/ws'
89d92cb8e   Swarn Singh   minor change
8
          //url: 'http://192.168.1.175:8080/ws'
9fabc0d40   Swarn Singh   fuel manager and ...
9
          //url: 'http://192.168.1.8:8080/ws'
80cd89afb   Mr. Hot Foods   vector maps
10
          url: 'http://192.168.2.137:8080/ws'
9fabc0d40   Swarn Singh   fuel manager and ...
11

4bb02bb84   Rishav   new integration w...
12
13
14
15
16
17
18
19
20
21
22
23
24
  	})
  
  	.constant('AUTH_EVENTS', {
          updateUser: 'update-user',
          notAuthorized: 'auth-not-authorized'
      })
  
      .constant('USER_ROLES', {
          user : 'user',
          admin: 'admin'
      });
      
  })();