Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow non-SSO deployments #30

Open
Tracked by #2
tlater-famedly opened this issue Aug 13, 2024 · 1 comment
Open
Tracked by #2

Allow non-SSO deployments #30

tlater-famedly opened this issue Aug 13, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@tlater-famedly
Copy link
Contributor

As of 9995b4c SSO is mandatory, which is obviously not what we want.

The problem is that Zitadel currently sends confirmation emails if no authentication method is enabled on user creation - and since we don't want to pre-set passwords for security reasons, but still don't want to email users for flow reasons, this means we cannot currently provide sync for users that should not use SSO.

Fixing this requires upstream changes to Zitadel, so this is blocked until we have some kind of resolution for zitadel/zitadel#8422

@tlater-famedly tlater-famedly mentioned this issue Aug 13, 2024
10 tasks
@nikzen nikzen added enhancement New feature or request and removed feature labels Aug 20, 2024
@nikzen
Copy link

nikzen commented Oct 9, 2024

This is possible now:

POST https://auth.staging.famedly.de/v2/users/human

{
  "userId": "1234567abc",
  "username": "larodar1234567abc",
  "profile": {
    "givenName": "Minnie",
    "familyName": "Mouse",
    "displayName": "Minnie Mouse"
  },
  "email": {
    "email": "[email protected]",
    "isVerified": true
  }
}

Creates a user and no mail is sent. If the user tries to login, zitadel sends a code to set the password

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants