Skip to content

Commit

Permalink
Add password matrix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
yostyle committed Sep 1, 2021
1 parent 32bad57 commit 4681847
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,24 @@ data class MatrixError(
/** (Not documented yet) */
const val M_WEAK_PASSWORD = "M_WEAK_PASSWORD"

/** (Not documented yet) */
const val M_PASSWORD_TOO_SHORT = "M_PASSWORD_TOO_SHORT"

/** (Not documented yet) */
const val M_PASSWORD_NO_DIGIT = "M_PASSWORD_NO_DIGIT"

/** (Not documented yet) */
const val M_PASSWORD_NO_UPPERCASE = "M_PASSWORD_NO_UPPERCASE"

/** (Not documented yet) */
const val M_PASSWORD_NO_LOWERCASE = "M_PASSWORD_NO_LOWERCASE"

/** (Not documented yet) */
const val M_PASSWORD_NO_SYMBOL = "M_PASSWORD_NO_SYMBOL"

/** (Not documented yet) */
const val M_PASSWORD_IN_DICTIONARY = "M_PASSWORD_IN_DICTIONARY"

const val M_TERMS_NOT_SIGNED = "M_TERMS_NOT_SIGNED"

// For identity service
Expand Down

0 comments on commit 4681847

Please sign in to comment.