aboutsummaryrefslogtreecommitdiff
path: root/src/app/app-constants.module.ts
diff options
context:
space:
mode:
authorKamen Mladenov <kamen.d.mladenov@protonmail.com>2021-04-08 08:24:34 +0300
committerGitHub <noreply@github.com>2021-04-08 08:24:34 +0300
commitcfa5391e0f887f7da00ddce8d604897ca08b680f (patch)
tree5c6aa123de001fda93720e7dd156fe2626305da0 /src/app/app-constants.module.ts
parentb9d5225b7e9f820c28690c243b067cfeb5251d74 (diff)
parent10a4896a17495548ed3ce6b333939203b698470b (diff)
downloadDevHive-Angular-cfa5391e0f887f7da00ddce8d604897ca08b680f.tar
DevHive-Angular-cfa5391e0f887f7da00ddce8d604897ca08b680f.tar.gz
DevHive-Angular-cfa5391e0f887f7da00ddce8d604897ca08b680f.zip
Merge pull request #5 from Team-Kaleidoscope/profile-picture-update
Profile picture request update
Diffstat (limited to 'src/app/app-constants.module.ts')
-rw-r--r--src/app/app-constants.module.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app/app-constants.module.ts b/src/app/app-constants.module.ts
index 39538e0..d1bd9f5 100644
--- a/src/app/app-constants.module.ts
+++ b/src/app/app-constants.module.ts
@@ -2,6 +2,7 @@ export class AppConstants {
public static BASE_API_URL = 'http://localhost:5000/api';
public static API_USER_URL = AppConstants.BASE_API_URL + '/User';
+ public static API_PROFILE_PICTURE_URL = AppConstants.BASE_API_URL + '/ProfilePicture';
public static API_USER_LOGIN_URL = AppConstants.API_USER_URL + '/login';
public static API_USER_REGISTER_URL = AppConstants.API_USER_URL + '/register';