mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 21:17:32 +00:00
feat: implement register Passkey user API v2 (#5873)
* command/crypto: DRY the code - reuse the the algorithm switch to create a secret generator - add a verifyCryptoCode function * command: crypto code tests * migrate webauthn package * finish integration tests with webauthn mock client
This commit is contained in:
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: Benutzer konnte in der gewünschten Organisation nicht gefunden werden
|
||||
NotAllowedOrg: Benutzer gehört nicht der benötigten Organisation an
|
||||
UserIDMissing: User ID fehlt
|
||||
UserIDWrong: "Der Anforderungsbenutzer ist nicht gleich dem authentifizierten Benutzer"
|
||||
DomainPolicyNil: Organisation Policy ist leer
|
||||
EmailAsUsernameNotAllowed: Benutzername darf keine E-Mail Adresse sein
|
||||
Invalid: Benutzerdaten sind ungültig
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: Keine Änderungen gefunden
|
||||
InitCodeNotFound: Kein Initialisierungs-Code gefunden
|
||||
UsernameNotChanged: Benutzername wurde nicht verändert
|
||||
InvalidURLTemplate: URL Template ist ungültig
|
||||
Profile:
|
||||
NotFound: Profil nicht gefunden
|
||||
NotChanged: Profil nicht verändert
|
||||
@@ -81,7 +83,6 @@ Errors:
|
||||
NotChanged: Email wurde nicht geändert
|
||||
Empty: Email ist leer
|
||||
IDMissing: Email ID fehlt
|
||||
InvalidURLTemplate: URL Template ist ungültig
|
||||
Phone:
|
||||
NotFound: Telefonnummer nicht gefunden
|
||||
Invalid: Telefonnummer ist ungültig
|
||||
|
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: User could not be found on chosen organization
|
||||
NotAllowedOrg: User is no member of the required organization
|
||||
UserIDMissing: User ID missing
|
||||
UserIDWrong: "Request user not equal to authenticated user"
|
||||
DomainPolicyNil: Organisation Policy is empty
|
||||
EmailAsUsernameNotAllowed: Email is not allowed as username
|
||||
Invalid: Userdata is invalid
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: No changes found
|
||||
InitCodeNotFound: Initialization Code not found
|
||||
UsernameNotChanged: Username not changed
|
||||
InvalidURLTemplate: URL Template is invalid
|
||||
Profile:
|
||||
NotFound: Profile not found
|
||||
NotChanged: Profile not changed
|
||||
@@ -81,7 +83,6 @@ Errors:
|
||||
NotChanged: Email not changed
|
||||
Empty: Email is empty
|
||||
IDMissing: Email ID is missing
|
||||
InvalidURLTemplate: URL Template is invalid
|
||||
Phone:
|
||||
NotFound: Phone not found
|
||||
Invalid: Phone is invalid
|
||||
|
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: El usuario no pudo encontrarse en la organización elegida
|
||||
NotAllowedOrg: El usuario no es miembro de la organización requerida
|
||||
UserIDMissing: Falta el ID de usuario
|
||||
UserIDWrong: "Solicitud de usuario no igual al usuario autenticado"
|
||||
DomainPolicyNil: Falta la política de la organización
|
||||
EmailAsUsernameNotAllowed: La dirección de Email no se permite como nombre de usuario
|
||||
Invalid: Los datos de usuario no son válidos
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: No se encontraron cambios
|
||||
InitCodeNotFound: Código de inicialización no encontrado
|
||||
UsernameNotChanged: El nombre de usuario no cambió
|
||||
InvalidURLTemplate: La plantilla URL no es válida
|
||||
Profile:
|
||||
NotFound: Perfil no encontrado
|
||||
NotChanged: El perfil no ha cambiado
|
||||
@@ -81,7 +83,6 @@ Errors:
|
||||
NotChanged: El email no ha cambiado
|
||||
Empty: El email no está vacío
|
||||
IDMissing: Falta el ID del email
|
||||
InvalidURLTemplate: La plantilla URL no es válida
|
||||
Phone:
|
||||
NotFound: Teléfono no encontrado
|
||||
Invalid: El teléfono no es válido
|
||||
|
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: L'utilisateur n'a pas été trouvé dans l'organisation choisie
|
||||
NotAllowedOrg: L'utilisateur n'est pas membre de l'organisation requise
|
||||
UserIDMissing: L'ID de l'utilisateur est manquant
|
||||
UserIDWrong: "L'utilisateur de la demande n'est pas égal à l'utilisateur authentifié"
|
||||
DomainPolicyNil: La politique de l'organisation est vide
|
||||
EmailAsUsernameNotAllowed: L'email n'est pas autorisé comme nom d'utilisateur
|
||||
Invalid: Les données de l'utilisateur ne sont pas valides
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: Aucun changement trouvé
|
||||
InitCodeNotFound: Code d'initialisation non trouvé
|
||||
UsernameNotChanged: Nom d'utilisateur non modifié
|
||||
InvalidURLTemplate: Le modèle d'URL n'est pas valide
|
||||
Profile:
|
||||
NotFound: Profil non trouvé
|
||||
NotChanged: Le profil n'a pas changé
|
||||
@@ -81,7 +83,6 @@ Errors:
|
||||
NotChanged: L'adresse électronique n'a pas changé
|
||||
Empty: Email est vide
|
||||
IDMissing: Email ID manquant
|
||||
InvalidURLTemplate: Le modèle d'URL n'est pas valide
|
||||
Phone:
|
||||
Notfound: Téléphone non trouvé
|
||||
Invalid: Le téléphone n'est pas valide
|
||||
|
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: L'utente non è stato trovato nell'organizzazione scelta
|
||||
NotAllowedOrg: L'utente non è membro dell'organizzazione richiesta
|
||||
UserIDMissing: ID utente mancante
|
||||
UserIDWrong: "Utente richiesta non uguale all'utente autenticato"
|
||||
DomainPolicyNil: Impostazione Org IAM mancante
|
||||
EmailAsUsernameNotAllowed: L'e-mail non è consentita come nome utente
|
||||
Invalid: I dati utente non sono validi
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: Nessun cambiamento trovato
|
||||
InitCodeNotFound: Codice di inizializzazione non trovato
|
||||
UsernameNotChanged: Nome utente non cambiato
|
||||
InvalidURLTemplate: Il modello di URL non è valido
|
||||
Profile:
|
||||
NotFound: Profilo non trovato
|
||||
NotChanged: Profilo non cambiato
|
||||
@@ -81,7 +83,6 @@ Errors:
|
||||
NotChanged: Email non cambiata
|
||||
Empty: Email è vuota
|
||||
IDMissing: Email ID mancante
|
||||
InvalidURLTemplate: Il modello di URL non è valido
|
||||
Phone:
|
||||
NotFound: Telefono non trovato
|
||||
Invalid: Il telefono non è valido
|
||||
|
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: ユーザーが選択した組織内で見つかりません
|
||||
NotAllowedOrg: ユーザーが必要な組織のメンバーでありません
|
||||
UserIDMissing: ユーザーIDがありません
|
||||
UserIDWrong: "リクエストユーザーが認証されたユーザーと等しくない"
|
||||
DomainPolicyNil: 組織ポリシーが空です
|
||||
EmailAsUsernameNotAllowed: メールアドレスはユーザー名として使用できません
|
||||
Invalid: 無効なユーザーデータです
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: 変更は見つかりません
|
||||
InitCodeNotFound: 初期化コードが見つかりません
|
||||
UsernameNotChanged: ユーザー名は変更されていません
|
||||
InvalidURLTemplate: URLテンプレートが無効です
|
||||
Profile:
|
||||
NotFound: プロファイルが見つかりません
|
||||
NotChanged: プロファイルが変更されていません
|
||||
@@ -76,7 +78,6 @@ Errors:
|
||||
Invalid: 無効なメールアドレスです
|
||||
AlreadyVerified: メールアドレスはすでに検証済みです
|
||||
NotChanged: メールアドレスが変更されていません
|
||||
InvalidURLTemplate: URLテンプレートが無効です
|
||||
Phone:
|
||||
NotFound: 電話番号が見つかりません
|
||||
Invalid: 無効な電話番号です
|
||||
|
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: Użytkownik nie został znaleziony w wybranej organizacji
|
||||
NotAllowedOrg: Użytkownik nie jest członkiem wymaganej organizacji
|
||||
UserIDMissing: Brakuje ID użytkownika
|
||||
UserIDWrong: "Żądanie użytkownika nie jest równe uwierzytelnionemu użytkownikowi"
|
||||
DomainPolicyNil: Polityka organizacji jest pusta
|
||||
EmailAsUsernameNotAllowed: Adres e-mail nie jest dozwolony jako nazwa użytkownika
|
||||
Invalid: Dane użytkownika są nieprawidłowe
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: Nie znaleziono zmian
|
||||
InitCodeNotFound: Kod inicjalizacji nie znaleziony
|
||||
UsernameNotChanged: Nazwa użytkownika nie została zmieniona
|
||||
InvalidURLTemplate: Szablon URL jest nieprawidłowy
|
||||
Profile:
|
||||
NotFound: Profil nie znaleziony
|
||||
NotChanged: Profil nie zmieniony
|
||||
@@ -81,7 +83,6 @@ Errors:
|
||||
NotChanged: Adres e-mail nie zmieniony
|
||||
Empty: Adres e-mail jest pusty
|
||||
IDMissing: Adres e-mail ID brakuje
|
||||
InvalidURLTemplate: Szablon URL jest nieprawidłowy
|
||||
Phone:
|
||||
NotFound: Numer telefonu nie znaleziony
|
||||
Invalid: Numer telefonu jest nieprawidłowy
|
||||
|
@@ -53,6 +53,7 @@ Errors:
|
||||
NotFoundOnOrg: 在所选组织中找不到用户
|
||||
NotAllowedOrg: 用户不是所需组织的成员
|
||||
UserIDMissing: 缺少用户 ID
|
||||
UserIDWrong: "请求用户不等于经过身份验证的用户"
|
||||
DomainPolicyNil: 组织策略为空
|
||||
EmailAsUsernameNotAllowed: 电子邮件不允许作为用户名
|
||||
Invalid: 用户数据无效
|
||||
@@ -67,6 +68,7 @@ Errors:
|
||||
NoChanges: 未发现任何更改
|
||||
InitCodeNotFound: 未找到初始化验证码
|
||||
UsernameNotChanged: 用户名未更改
|
||||
InvalidURLTemplate: URL模板无效
|
||||
Profile:
|
||||
NotFound: 未找到个人资料
|
||||
NotChanged: 个人资料未更改
|
||||
@@ -81,7 +83,6 @@ Errors:
|
||||
NotChanged: 电子邮件未更改
|
||||
Empty: 电子邮件是空的
|
||||
IDMissing: 电子邮件ID丢失
|
||||
InvalidURLTemplate: URL模板无效
|
||||
Phone:
|
||||
NotFound: 手机号码未找到
|
||||
Invalid: 手机号码无效
|
||||
|
Reference in New Issue
Block a user