Non-IRC chat references #106
Description
Currently the schema has in the participate
section both irc
and irc-contacts
.
As per this announcement, IRC is being replaced inside Mozilla with Matrix. This will make it impossible for Mozilla projects to satisfy the demands of the observatory which demands an IRC channel and contacts.
The easiest would be to just add matrix
and matrix-contacts
in a similar fashion, under participate
, for example:
"participate": {
"matrix": "#matrix:matrix.org",
"matrix-contacts": [
"@someaccount:matrix.org",
"@someaccount:mozilla.org"
],
}
However, possibly a more future proof way would be to introduce an array of chat rooms as objects? Something like this, an example for the Matrix project:
"participate": {
"chat": [
{
"location": "irc://chat.freenode.net/#matrix",
"contacts": [
"someaccount1",
"someaccount2"
]
},
{
"location": "matrix:room/matrix:matrix.org",
"contacts": [
"@someaccount1:matrix.org",
"@someaccount2:mozilla.org"
]
}
]
}
Not entirely sure what the keys would be. The Matrix URI scheme proposal is based on MSC2312 which is yet to be accepted.
Opening for discussion, happy to PR something as well if there is consensus.
Activity