diff options
Diffstat (limited to 'src/constants.js')
-rw-r--r-- | src/constants.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/constants.js b/src/constants.js new file mode 100644 index 0000000..ab815d8 --- /dev/null +++ b/src/constants.js @@ -0,0 +1,17 @@ +define([], function() { + + var CONSTANTS = { + + apiUrl: "http://url", + // apiUrl: "http://192.168.4.11:8080/", //sai machine + + api: { + login_api: 'user/login/', + forgot_api: 'user/forgot/', + + } + }; + + return CONSTANTS; + +}) |