You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
While implementing #21, I've setup a NotifyTeams() and NotifyEmail() pair of methods to determine whether those notification types are enabled. Unfortunately they're tied directly to a Config type, so only the value created from that type can be used to call the methods. This either means I pass the Config value to each part of the code that needs it, or I find a way to track and expose the state of all notifiers (enabled/disabled) from relevant parts of the code that need it.
For now, the stats output related to Teams (#21) and Email notifications (#19) will be generated regardless of whether they're actually used.
The text was updated successfully, but these errors were encountered:
While implementing #21, I've setup a
NotifyTeams()
andNotifyEmail()
pair of methods to determine whether those notification types are enabled. Unfortunately they're tied directly to aConfig
type, so only the value created from that type can be used to call the methods. This either means I pass theConfig
value to each part of the code that needs it, or I find a way to track and expose the state of all notifiers (enabled/disabled) from relevant parts of the code that need it.For now, the stats output related to Teams (#21) and Email notifications (#19) will be generated regardless of whether they're actually used.
The text was updated successfully, but these errors were encountered: