docs: MFA default-on, per-method meta fields, user search by ID, org member email#75
Open
lakhansamani wants to merge 1 commit into
Open
docs: MFA default-on, per-method meta fields, user search by ID, org member email#75lakhansamani wants to merge 1 commit into
lakhansamani wants to merge 1 commit into
Conversation
… member email Reflect server changes merged in authorizer#679/#680/#681/#682: - MFA is on by default and optional; document --disable-totp-login, --disable-email-otp, --disable-sms-otp and the --enforce-mfa default flip (server-config, v1-to-v2 migration mapping + breaking note). - Add public meta fields is_totp_mfa_enabled / is_email_otp_mfa_enabled / is_sms_otp_mfa_enabled / is_webauthn_enabled and admin is_multi_factor_auth_service_enabled (graphql-api). - _users / POST /v1/admin/users query param now matches user ID too. - Organization member listings expose email / given_name / family_name.
✅ Deploy Preview for authorizerdev-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Documents the server changes merged in
authorizerPRs #679, #680, #681, #682.MFA (breaking flag change)
docs/core/server-config.md— new "Multi-factor authentication (MFA)" section: MFA is now on by default;--disable-totp-login/--disable-email-otp/--disable-sms-otpopt out per method; email/SMS OTP only available when SMTP/Twilio configured;--enforce-mfa(defaultfalse) makes MFA mandatory. Removed the old--enable-*MFA flags from the example.docs/migration/v1-to-v2.md— updated the auth-behavior flag mapping and added a breaking note with the--enable-* → --disable-*translation table.New meta fields
docs/core/graphql-api.md— publicmeta:is_totp_mfa_enabled,is_email_otp_mfa_enabled,is_sms_otp_mfa_enabled,is_webauthn_enabled; admin_admin_meta:is_multi_factor_auth_service_enabled.Admin user search + org members
graphql-api.md/rest-api.md—_users/POST /v1/admin/usersqueryparam now also matches user ID (plus email, given_name, family_name, nickname).docs/enterprise/organizations.md— organization member listings now exposeemail/given_name/family_name(blank if the user was deleted).gRPC docs already defer to the GraphQL/REST field references, so no separate gRPC edits were needed.