mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-11 18:43:44 -05:00
feat: I need to be able to talk to my users. #3552
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 @abs-nikidinsey on GitHub (Feb 3, 2025).
Feature Request
Is your feature request related to a problem? Please describe.
We currently have around 100 pilot users accessing Open WebUI via Google SSO, and it's working fantastically for our school. However, I need a reliable way to communicate important information to users before rolling out the service further (another ~900 users). As the Admin, I must provide our users with clear details regarding GDPR compliance, privacy policies, and our school's AI usage policies. In the UK, we are required to be upfront about what data is stored, how it’s processed, and users’ rights regarding data deletion. Currently, there's no straightforward method to display these crucial notices directly within the app.
Describe the solution you'd like
I propose implementing a closable “growl” style notification that appears for all users across the application. The key requirements are:
Visibility and Interaction:
Admin Configuration:
Styling and Consistency:
Technical Considerations:
pip install, meaning we do not have easy access to modify the source JS files directly. An attempt to uncomment the “footer goes here” section inindex.htmlresulted in the message flashing briefly on screen before disappearing.Describe alternatives you've considered
I attempted to manually insert a footer by uncommenting the relevant section in
index.html, but this approach was unsuccessful because the message only briefly appeared before disappearing. Additionally, a static footer or a message limited only to the login page would not satisfy our needs for ongoing compliance notifications throughout the user session.Additional context
This feature is crucial for our continued use and expansion of Open WebUI. By implementing this admin-configurable notification system, we can effectively communicate important policy information—such as GDPR compliance, privacy practices, and AI policy usage—to all users. This is necessary for regulatory compliance and to maintain transparency with our users. Thank you for considering this request, and I appreciate all the work that has gone into making Open WebUI such a robust tool.
@taylorwilsdon commented on GitHub (Feb 3, 2025):
Already exists, you're looking for "Admin -> Settings -> Interface -> Banners" which will let you deploy a warning, info, error or success message that the user can close.
@abs-nikidinsey commented on GitHub (Feb 3, 2025):
thank you @taylorwilsdon this will do! I can roll out to the whole cohort!