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 ff8aa96
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/3927.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add password errors in the matrix SDK
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 ff8aa96

Please sign in to comment.