mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-08-28 05:14:17 +00:00
Use element-hq links to GitHub issues for migration advisor (#3204)
This commit is contained in:
@@ -96,17 +96,17 @@ export async function advisor(): Promise<void> {
|
||||
);
|
||||
if (guestUsers > 0) {
|
||||
error(
|
||||
`Synapse database contains ${guestUsers} guest users which aren't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/1445`,
|
||||
`Synapse database contains ${guestUsers} guest users which aren't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/1445`,
|
||||
);
|
||||
}
|
||||
if (synapseConfig.allow_guest_access) {
|
||||
if (guestUsers > 0) {
|
||||
error(
|
||||
"Synapse config allows guest access which isn't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/1445",
|
||||
"Synapse config allows guest access which isn't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/1445",
|
||||
);
|
||||
} else {
|
||||
error(
|
||||
"Synapse config allows guest access which isn't supported by MAS, but no guest users were found in the database so the option could be disabled: https://github.com/matrix-org/matrix-authentication-service/issues/1445",
|
||||
"Synapse config allows guest access which isn't supported by MAS, but no guest users were found in the database so the option could be disabled: https://github.com/element-hq/matrix-authentication-service/issues/1445",
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -118,7 +118,7 @@ export async function advisor(): Promise<void> {
|
||||
}
|
||||
if (synapseConfig.enable_registration_captcha) {
|
||||
error(
|
||||
"Synapse config has registration CAPTCHA enabled which isn't supported by MAS: https://github.com/matrix-org/matrix-authentication-service/issues/138",
|
||||
"Synapse config has registration CAPTCHA enabled which isn't supported by MAS: https://github.com/element-hq/matrix-authentication-service/issues/138",
|
||||
);
|
||||
}
|
||||
if (synapseConfig.user_consent) {
|
||||
@@ -140,7 +140,7 @@ export async function advisor(): Promise<void> {
|
||||
);
|
||||
if (usersWithoutEmailAddress > 0) {
|
||||
warn(
|
||||
`Synapse database contains ${usersWithoutEmailAddress} users without a verified email address who will need to verify their email address before they can login after migration: https://github.com/matrix-org/matrix-authentication-service/issues/1505`,
|
||||
`Synapse database contains ${usersWithoutEmailAddress} users without a verified email address who will need to verify their email address before they can login after migration: https://github.com/element-hq/matrix-authentication-service/issues/1505`,
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user