-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement marking users offline in users view (#1112)
* Fix the issue (#958) * Revert "Fix the issue (#958)" This reverts commit 2dee8af. * Add external authorization to Chatbot * Update .guard Fix missing quotes & broken step * Implement marking users offline in users view * Remove unintentionally commited changes --------- Co-authored-by: Igor Krupenja <igor.krupenja@gmail.com> Co-authored-by: Ahmed yasser <26207361+1AhmedYasser@users.noreply.github.com> Co-authored-by: Varmo <101868197+varmoh@users.noreply.github.com> Co-authored-by: RayDNoper <alar.floren@bpw-consulting.com>
- Loading branch information
1 parent
ee03278
commit 0873038
Showing
5 changed files
with
147 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export type CustomerSupportActivityDTO = { | ||
customerSupportActive: boolean; | ||
customerSupportStatus: 'offline' | 'idle' | 'online'; | ||
customerSupportId: string; | ||
}; |
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