Commit 89d92cb8efd512d15c46cf62102f733b03bddc97

Authored by Swarn Singh
1 parent 259cb85cd6
Exists in master

minor change

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/js/app.constant.js
1 (function(){ 1 (function(){
2 'use strict'; 2 'use strict';
3 3
4 angular.module('acufuel') 4 angular.module('acufuel')
5 5
6 .constant('BASE_URL', { 6 .constant('BASE_URL', {
7 //url: 'http://54.149.169.33:8080/ws' 7 url: 'http://54.149.169.33:8080/ws'
8 url: 'http://192.168.1.175:8080/ws' 8 //url: 'http://192.168.1.175:8080/ws'
9 //url: 'http://192.168.1.8:8080/ws' 9 //url: 'http://192.168.1.8:8080/ws'
10 10
11 }) 11 })
12 12
13 .constant('AUTH_EVENTS', { 13 .constant('AUTH_EVENTS', {
14 updateUser: 'update-user', 14 updateUser: 'update-user',
15 notAuthorized: 'auth-not-authorized' 15 notAuthorized: 'auth-not-authorized'
16 }) 16 })
17 17
18 .constant('USER_ROLES', { 18 .constant('USER_ROLES', {
19 user : 'user', 19 user : 'user',
20 admin: 'admin' 20 admin: 'admin'
21 }); 21 });
22 22
23 })(); 23 })();