-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce webhook callback in account sync (#998)
* Introduce webhook callback in account sync Signed-off-by: sugargoat <[email protected]> * Plumbing to introduce webhook thread Signed-off-by: sugargoat <[email protected]> * Webhook reqwest functioning Signed-off-by: sugargoat <[email protected]> * Clean up Signed-off-by: sugargoat <[email protected]> * Updating to use URL + documentation Signed-off-by: sugargoat <[email protected]> * Smaller cargo.lock footprint Signed-off-by: sugargoat <[email protected]> * Fix linter - sort dependencies Signed-off-by: sugargoat <[email protected]> * Plumbing to introduce webhook thread Signed-off-by: sugargoat <[email protected]> * Clean up logging Signed-off-by: sugargoat <[email protected]> * Rebased on main, some more logging fixups Signed-off-by: sugargoat <[email protected]> * Webhook now receives post of list of accounts, and only when they are fully synced Signed-off-by: sugargoat <[email protected]> * Cleaning up logging and fixing up documentation Signed-off-by: sugargoat <[email protected]> * Move WebhookThread to its own file Signed-off-by: sugargoat <[email protected]> * Set poll_interval to match config for full-service polling Signed-off-by: sugargoat <[email protected]> * Refactor test_utils to be a little less invasive Signed-off-by: sugargoat <[email protected]> * Clean up test documentation Signed-off-by: sugargoat <[email protected]> * minor fixups and remove webhook restart notification --------- Signed-off-by: sugargoat <[email protected]> Co-authored-by: Henry Holtzman <[email protected]>
- Loading branch information
Showing
25 changed files
with
1,236 additions
and
87 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,3 +1,4 @@ | ||
mod account; | ||
mod other; | ||
mod transaction; | ||
mod webhook; |
Oops, something went wrong.