Attach documentation reference to expired account error

This commit is contained in:
Florian Renaud 2021-08-27 14:33:12 +02:00
parent cb3ce2708f
commit 7714cc41f7

View file

@ -190,7 +190,11 @@ data class MatrixError(
// Possible value for "limit_type" // Possible value for "limit_type"
const val LIMIT_TYPE_MAU = "monthly_active_user" const val LIMIT_TYPE_MAU = "monthly_active_user"
/** The user account has expired. It has to be renewed by clicking on an email or by sending a renewal token. */ /**
* The user account has expired. It has to be renewed by clicking on an email or by sending a renewal token.
*
* More documentation can be found in the dedicated Synapse plugin module repository: https://github.com/matrix-org/synapse-email-account-validity
*/
const val ORG_MATRIX_EXPIRED_ACCOUNT = "ORG_MATRIX_EXPIRED_ACCOUNT" const val ORG_MATRIX_EXPIRED_ACCOUNT = "ORG_MATRIX_EXPIRED_ACCOUNT"
} }
} }