Done.
For future reference, I had to do this through the REST API, since I was incorrectly listed there as “djazayeri” instead of “darius”. I used postman, authenticating as I describe here. Then I fetched a longer list of maintainers from the webservices.rest module (see below) and did PUT https://modules.openmrs.org/modulus/api/modules/120 with that the body:
{
"maintainers": [
{
"id": 66,
"fullname": "Wyclif Luyima",
"username": "wyclif"
},
{
"id": 12,
"fullname": "Darius Jazayeri",
"username": "darius"
},
{
"id": 15,
"fullname": "Daniel Kayiwa",
"username": "dkayiwa"
},
{
"id": 34,
"fullname": "Mark Goodrich",
"username": "mogoodrich"
},
{
"id": 46,
"fullname": "Rafal Korytkowski",
"username": "raff"
},
{
"id": 35,
"fullname": "Mike Seaton",
"username": "mseaton"
}
]
}