Blame view
app/js/app.constant.js
473 Bytes
4bb02bb84
|
1 2 3 4 5 6 |
(function(){ 'use strict'; angular.module('acufuel') .constant('BASE_URL', { |
80cd89afb
|
7 |
// url: 'http://54.149.169.33:8080/ws' |
89d92cb8e
![]() |
8 |
//url: 'http://192.168.1.175:8080/ws' |
9fabc0d40
![]() |
9 |
//url: 'http://192.168.1.8:8080/ws' |
80cd89afb
|
10 |
url: 'http://192.168.2.137:8080/ws' |
9fabc0d40
![]() |
11 |
|
4bb02bb84
|
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' }); })(); |