mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-07 03:18:23 -05:00
[GH-ISSUE #14906] issue: Non-Admin Users with Notes Permission Face 403 Errors in v0.6.14 #17400
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @snowboarder04 on GitHub (Jun 11, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/14906
Check Existing Issues
Installation Method
Docker
Open WebUI Version
0.6.14
Ollama Version (if applicable)
No response
Operating System
docker image
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
Non-admin users with
Notespermission enabled should be able to create, access, and delete notes without 403 errors or red UI pop-ups.Actual Behavior
POST /api/v1/notes/createsucceeds (200), but UI shows error pop-up.GET /api/v1/notes/<note_id>andDELETE /api/v1/notes/<note_id>/deletereturn 403, causing redirects or persistent notes.Steps to Reproduce
$URL/admin/users/groups.Notesunder Features Permissions.Notes>New Note:Adminat$URL/admin/users/overview> User Pencil icon > Role.Logs & Screenshots
Context: The logs capture HTTP requests related to the
Notesfeature inopenwebui:main(v0.6.14). They show a non-admin user attempting to create, access, and delete a note, resulting in HTTP 403 (Forbidden) errors for access and deletion, despite successful creation. An admin user’s actions on a different note succeed, indicating a permissions issue for non-admin users.Explanation of Circumstances:
GET) or delete (DELETE) it result in 403 errors, indicating a permissions issue despite theNotesfeature being enabled for their group.Additional Information
Notespermission in group settings.@ZaibanAli commented on GitHub (Jun 11, 2025):
https://github.com/open-webui/open-webui/issues/14894