[PR #5146] Idp logto #27208

Open
opened 2026-08-05 07:08:22 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/5146
Author: @jpmchia
Created: 1/20/2026
Status: 🔄 Open

Base: mainHead: idp-logto


📝 Commits (10+)

  • d7c5f5d Enforce HttpConfig overwrite when embeddedIdp is enabled
  • 5659e45 Disable offline_access scope in dashboard by default
  • 721e92f Add group propagation foundation to embedded idp
  • 098e480 Require groups scope in dex config for okt and pocket
  • 42c5db4 remove offline_access from device default scopes
  • f96c82e Add support for LogTo identity provider in configuration
  • 7ba1e79 Merge origin/main into idp-logto
  • 9152347 Update management/server/idp/logto_test.go
  • 8a52066 Update management/server/idp/logto.go
  • 7bbd10d Update management/server/idp/logto.go

📊 Changes

6 files changed (+1060 additions, -6 deletions)

View changed files

📝 infrastructure_files/base.setup.env (+2 -0)
📝 infrastructure_files/management.json.tmpl (+4 -2)
📝 infrastructure_files/setup.env.example (+19 -4)
📝 management/server/idp/idp.go (+30 -0)
management/server/idp/logto.go (+610 -0)
management/server/idp/logto_test.go (+395 -0)

📄 Description

Describe your changes

Stack

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)

By submitting this pull request, you confirm that you have read and agree to the terms of the Contributor License Agreement.

Documentation

Select exactly one:

  • I added/updated documentation for this change
  • Documentation is not needed for this change (explain why)

Docs PR URL (required if "docs added" is checked)

Paste the PR link from https://github.com/netbirdio/docs here:

https://github.com/netbirdio/docs/pull/__

Summary by CodeRabbit

  • New Features

    • Logto identity provider integration now available, enabling user authentication and management through Logto's identity services with support for user creation, retrieval, and account management operations.
  • Chores

    • Updated configuration templates and environment setup documentation to include Logto-specific parameters, authentication endpoints, and tenant configuration guidance for both Cloud and OSS deployments.

✏️ Tip: You can customize this high-level summary in your review settings.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/5146 **Author:** [@jpmchia](https://github.com/jpmchia) **Created:** 1/20/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `idp-logto` --- ### 📝 Commits (10+) - [`d7c5f5d`](https://github.com/netbirdio/netbird/commit/d7c5f5dacba6374b962accc577ba06021b55e287) Enforce HttpConfig overwrite when embeddedIdp is enabled - [`5659e45`](https://github.com/netbirdio/netbird/commit/5659e45c9331c966fce8e0f7d4d52db72fb20ec4) Disable offline_access scope in dashboard by default - [`721e92f`](https://github.com/netbirdio/netbird/commit/721e92f026706ea114bc05d54b43f91e596f2e46) Add group propagation foundation to embedded idp - [`098e480`](https://github.com/netbirdio/netbird/commit/098e480e7427a92c1d61fcf2313f1a07bbe2b467) Require groups scope in dex config for okt and pocket - [`42c5db4`](https://github.com/netbirdio/netbird/commit/42c5db44d4417487e030d6a899c3d3ed4d97ad70) remove offline_access from device default scopes - [`f96c82e`](https://github.com/netbirdio/netbird/commit/f96c82ed21605de992bcedbb190c37b997f99c45) Add support for LogTo identity provider in configuration - [`7ba1e79`](https://github.com/netbirdio/netbird/commit/7ba1e79daf363249a1ca5f7ef542e03ed356e445) Merge origin/main into idp-logto - [`9152347`](https://github.com/netbirdio/netbird/commit/915234753dcaed738821a1354472e3a8473f1ff9) Update management/server/idp/logto_test.go - [`8a52066`](https://github.com/netbirdio/netbird/commit/8a520664cb354b50e8f02c215f1ea61419499c9c) Update management/server/idp/logto.go - [`7bbd10d`](https://github.com/netbirdio/netbird/commit/7bbd10ddea571af830074f2c465ccdf62de3e821) Update management/server/idp/logto.go ### 📊 Changes **6 files changed** (+1060 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `infrastructure_files/base.setup.env` (+2 -0) 📝 `infrastructure_files/management.json.tmpl` (+4 -2) 📝 `infrastructure_files/setup.env.example` (+19 -4) 📝 `management/server/idp/idp.go` (+30 -0) ➕ `management/server/idp/logto.go` (+610 -0) ➕ `management/server/idp/logto_test.go` (+395 -0) </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ## Stack <!-- branch-stack --> ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [x] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) > By submitting this pull request, you confirm that you have read and agree to the terms of the [Contributor License Agreement](https://github.com/netbirdio/netbird/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT.md). ## Documentation Select exactly one: - [ ] I added/updated documentation for this change - [ ] Documentation is **not needed** for this change (explain why) ### Docs PR URL (required if "docs added" is checked) Paste the PR link from https://github.com/netbirdio/docs here: https://github.com/netbirdio/docs/pull/__ <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Logto identity provider integration now available, enabling user authentication and management through Logto's identity services with support for user creation, retrieval, and account management operations. * **Chores** * Updated configuration templates and environment setup documentation to include Logto-specific parameters, authentication endpoints, and tenant configuration guidance for both Cloud and OSS deployments. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2026-08-05 07:08:22 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#27208