-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(call-history): update the callhistory when the user reads missed…
… calls (#3580)
- Loading branch information
Showing
7 changed files
with
339 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
export const APPLICATION_JSON = 'application/json'; | ||
export const CALL_HISTORY_FILE = 'CallHistory'; | ||
export const CONTENT_TYPE = 'Content-Type'; | ||
export const FROM_DATE = '?from'; | ||
export const HISTORY = 'history'; | ||
export const LIMIT = 50; | ||
export const NUMBER_OF_DAYS = 10; | ||
export const RESPONSE_MESSAGE = 'responseMessage'; | ||
export const UPDATE_MISSED_CALLS_ENDPOINT = 'setReadState'; | ||
export const SET_READ_STATE_SUCCESS_MESSAGE = 'Missed calls are read by the user.'; | ||
export const SUCCESS_MESSAGE = 'SUCCESS'; | ||
export const STATUS_CODE = 'statusCode'; | ||
export const USER_SESSIONS = 'userSessions'; |
Oops, something went wrong.