-
Notifications
You must be signed in to change notification settings - Fork 2
Notifications #184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Notifications #184
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
95253ea
Notifications
krystian-panek-vmltech 873cb39
Notifications
krystian-panek-vmltech ffa1fc5
Notifications
krystian-panek-vmltech 3e20df4
Notifications
krystian-panek-vmltech 7963d04
Notifications
krystian-panek-vmltech fa8b0a2
Safer Slack builder
krystian-panek-vmltech 9d2de8c
Teams payload and client
krystian-panek-vmltech eec82e2
Extension + notifications
krystian-panek-vmltech 0dc5524
refactor: extract notification logic from AcmeFacade into standalone …
krystian-panek-vmltech 93f5ded
Align to AEMC
krystian-panek-vmltech f9c4906
Notifier optionality
krystian-panek-vmltech 10d49c3
Misc GUI
krystian-panek-vmltech 6096d83
Send message method
krystian-panek-vmltech a10200f
Multi-notifier
krystian-panek-vmltech a378e1c
Multi-notifier
krystian-panek-vmltech 0e7254d
Multi-notifier
krystian-panek-vmltech c65a15a
Instance name
krystian-panek-vmltech 233389e
Notifications for Slack hardened
krystian-panek-vmltech 35df26c
Stricter notifiers
krystian-panek-vmltech 1a3a4c6
Executor with notifications
krystian-panek-vmltech 8d5e437
Executor with notifications
krystian-panek-vmltech 85e1afb
Refactoring
krystian-panek-vmltech 0e7ecb8
Bug fixes
krystian-panek-vmltech d96c23a
Bug fixes
krystian-panek-vmltech 821be51
Bug fixes
krystian-panek-vmltech 6cb416e
Bug fixes
krystian-panek-vmltech 3802892
Output and error in notifications
krystian-panek-vmltech 3826fcc
Hardening
krystian-panek-vmltech ebbdf53
Hardening
krystian-panek-vmltech 4acf40d
Hardening
krystian-panek-vmltech 19765cd
Hardening
krystian-panek-vmltech e040fe2
Hardening
krystian-panek-vmltech d9cc330
Hardening
krystian-panek-vmltech File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
14 changes: 14 additions & 0 deletions
14
core/src/main/java/dev/vml/es/acm/core/notification/NotificationException.java
This file contains hidden or 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,14 @@ | ||
package dev.vml.es.acm.core.notification; | ||
|
||
import dev.vml.es.acm.core.AcmException; | ||
|
||
public class NotificationException extends AcmException { | ||
|
||
public NotificationException(String message) { | ||
super(message); | ||
} | ||
|
||
public NotificationException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.