Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.
Before submitting, make sure you've checked the following:
[ x] Target branch: Please verify that the pull request targets the dev branch.
[ x] Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
Documentation: Have you updated relevant documentation Open WebUI Docs, or other documentation sources?
Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
Testing: Have you written and run sufficient tests for validating the changes?
Code review: Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
Prefix: To cleary categorize this pull request, prefix the pull request title, using one of the following:
BREAKING CHANGE: Significant changes that may affect compatibility
build: Changes that affect the build system or external dependencies
ci: Changes to our continuous integration processes or workflows
chore: Refactor, cleanup, or other non-functional code changes
docs: Documentation update or addition
feat: Introduces a new feature or enhancement to the codebase
fix: Bug fix or error correction
i18n: Internationalization or localization changes
perf: Performance improvement
refactor: Code restructuring for better maintainability, readability, or scalability
style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
test: Adding missing tests or correcting existing tests
WIP: Work in progress, a temporary label for incomplete or ongoing work
Changelog Entry
Description
Included user permissions in the response for the '/ldap' auth endpoint. Because the '/ldap' endpoint was missing this, it was causing issues on the initial sign in.
Changed
Included the permissions data in the response for the LDAP authentication endpoint.
Fixed
Fixed issue when logging into the app with LDAP would cause a blank white screen.
Additional Information
[Insert any additional context, notes, or explanations for the changes]
[Reference any related issues, commits, or other relevant information]
Screenshots or Videos
[Attach any relevant screenshots or videos demonstrating the changes]
🔄 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/open-webui/open-webui/pull/9031
**Author:** [@bunnerz-king](https://github.com/bunnerz-king)
**Created:** 1/28/2025
**Status:** ✅ Merged
**Merged:** 1/28/2025
**Merged by:** [@tjbck](https://github.com/tjbck)
**Base:** `dev` ← **Head:** `main`
---
### 📝 Commits (7)
- [`568dbc5`](https://github.com/open-webui/open-webui/commit/568dbc545cdd7e1d08e0db7851bace82db04a418) Merge pull request #8351 from open-webui/dev
- [`36b9bce`](https://github.com/open-webui/open-webui/commit/36b9bcee0f70868f2a74234a419bec36f993fe00) Merge pull request #8770 from open-webui/dev
- [`e3ae30e`](https://github.com/open-webui/open-webui/commit/e3ae30e42f5283c9ca9a1797485021068c87f7a9) Merge pull request #8776 from open-webui/dev
- [`9dd45dd`](https://github.com/open-webui/open-webui/commit/9dd45ddf7c5cea09be434278edf68f3fdb23dcfd) Merge pull request #8779 from open-webui/dev
- [`6c8d68b`](https://github.com/open-webui/open-webui/commit/6c8d68b6fc4ba25f02627c21552a726c0bd2b36e) Merge pull request #8793 from open-webui/dev
- [`b72150c`](https://github.com/open-webui/open-webui/commit/b72150c881955721a63ae7f4ea1b9ea293816fc1) Merge pull request #8835 from open-webui/dev
- [`a1b5c18`](https://github.com/open-webui/open-webui/commit/a1b5c18ef795ee3d17d1d587fd3a038afeef77ea) ldap pass user permissions into response
### 📊 Changes
**1 file changed** (+6 additions, -1 deletions)
<details>
<summary>View changed files</summary>
📝 `backend/open_webui/routers/auths.py` (+6 -1)
</details>
### 📄 Description
# Pull Request Checklist
### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) and describe your changes before submitting a pull request.
**Before submitting, make sure you've checked the following:**
- [ x] **Target branch:** Please verify that the pull request targets the `dev` branch.
- [ x] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description.
- [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources?
- [ ] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation?
- [ ] **Testing:** Have you written and run sufficient tests for validating the changes?
- [ ] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
- [ ] **Prefix:** To cleary categorize this pull request, prefix the pull request title, using one of the following:
- **BREAKING CHANGE**: Significant changes that may affect compatibility
- **build**: Changes that affect the build system or external dependencies
- **ci**: Changes to our continuous integration processes or workflows
- **chore**: Refactor, cleanup, or other non-functional code changes
- **docs**: Documentation update or addition
- **feat**: Introduces a new feature or enhancement to the codebase
- **fix**: Bug fix or error correction
- **i18n**: Internationalization or localization changes
- **perf**: Performance improvement
- **refactor**: Code restructuring for better maintainability, readability, or scalability
- **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
- **test**: Adding missing tests or correcting existing tests
- **WIP**: Work in progress, a temporary label for incomplete or ongoing work
# Changelog Entry
### Description
Included user permissions in the response for the '/ldap' auth endpoint. Because the '/ldap' endpoint was missing this, it was causing issues on the initial sign in.
### Changed
- Included the permissions data in the response for the LDAP authentication endpoint.
### Fixed
- Fixed issue when logging into the app with LDAP would cause a blank white screen.
---
### Additional Information
- [Insert any additional context, notes, or explanations for the changes]
- [Reference any related issues, commits, or other relevant information]
### Screenshots or Videos
- [Attach any relevant screenshots or videos demonstrating the changes]
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/9031
Author: @bunnerz-king
Created: 1/28/2025
Status: ✅ Merged
Merged: 1/28/2025
Merged by: @tjbck
Base:
dev← Head:main📝 Commits (7)
568dbc5Merge pull request #8351 from open-webui/dev36b9bceMerge pull request #8770 from open-webui/deve3ae30eMerge pull request #8776 from open-webui/dev9dd45ddMerge pull request #8779 from open-webui/dev6c8d68bMerge pull request #8793 from open-webui/devb72150cMerge pull request #8835 from open-webui/deva1b5c18ldap pass user permissions into response📊 Changes
1 file changed (+6 additions, -1 deletions)
View changed files
📝
backend/open_webui/routers/auths.py(+6 -1)📄 Description
Pull Request Checklist
Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.
Before submitting, make sure you've checked the following:
devbranch.Changelog Entry
Description
Included user permissions in the response for the '/ldap' auth endpoint. Because the '/ldap' endpoint was missing this, it was causing issues on the initial sign in.
Changed
Fixed
Additional Information
Screenshots or Videos
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.