-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently, the RWS implementation only allows for a single contact email. While the guidelines indicate that a group alias should be used if available, this is not currently being followed. This could cause issues if the email provided is no longer used or the contact provided is no longer associated with the organization behind the RWS.
I've thought of a few ways that we could change RWS to address the issue.
- Allow an RWS to contain a list of contacts, similar to the list of associated sites.
{
"contacts": [
"[email protected]",
"[email protected]",
"[email protected]"],
}- Allow an RWS to have a primary/organizational contact named and then an optional list of secondary contacts.
{
"primary contact":"[email protected]",
"secondary contacts": [
"[email protected]",
"[email protected]"],
}- Require an RWS to have an organization alias contact and a list of (at least one) individual contacts.
{
"organization contact":"[email protected]",
"secondary contacts": [
"[email protected]",
"[email protected]"],
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request