diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-11 09:18:16 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-11 09:18:16 -0800 |
commit | c74285c0f53efc1c4d0794d2f7f563b45e1eb700 (patch) | |
tree | 74e6089eadee6475206221f2b63fb617b9c81284 /src/constants/api.ts | |
parent | b6fa3c9c58c62c3fcb2462a03fa0fffb42d48b35 (diff) |
refactoring
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index dd3d6e15..34ef9a1c 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -38,8 +38,8 @@ export const COMMENT_THREAD_ENDPOINT: string = API_URL + 'reply/'; export const SP_USERS_ENDPOINT: string = API_URL + 'suggested_people/'; export const SP_UPDATE_PICTURE_ENDPOINT: string = SP_USERS_ENDPOINT + 'update_picture/'; export const SP_MUTUAL_BADGE_HOLDERS_ENDPOINT: string = SP_USERS_ENDPOINT + 'get_mutual_badge_holders/'; -export const ADD_USER_BADGES: string = SP_USERS_ENDPOINT + 'add_badges/'; -export const UPDATE_USER_BADGES: string = SP_USERS_ENDPOINT + 'update_badges/'; +export const ADD_BADGES_ENDPOINT: string = SP_USERS_ENDPOINT + 'add_badges/'; +export const UPDATE_BADGES_ENDPOINT: string = SP_USERS_ENDPOINT + 'update_badges/'; // Register as FCM device export const FCM_ENDPOINT: string = API_URL + 'fcm/'; |