diff options
author | Indrajith K L | 2017-01-17 15:37:25 +0530 |
---|---|---|
committer | Indrajith K L | 2017-01-17 15:37:25 +0530 |
commit | 550e2f03ad0b60b3c9db3d68dbf014dcb740a2ff (patch) | |
tree | faf6bff0bdde8f01514a3f59ecca943569647c40 /src/constants.js | |
download | JSTemplate-550e2f03ad0b60b3c9db3d68dbf014dcb740a2ff.tar.gz JSTemplate-550e2f03ad0b60b3c9db3d68dbf014dcb740a2ff.tar.bz2 JSTemplate-550e2f03ad0b60b3c9db3d68dbf014dcb740a2ff.zip |
Initial Commit
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; + +}) |