infiniflow / ragflow

RAGFlow is an open-source RAG (Retrieval-Augmented Generation) engine based on deep document understanding.
https://ragflow.io
Apache License 2.0
22.89k stars 2.24k forks source link

[Question]: Secure authentication login support? #3093

Closed albert-queralto closed 2 weeks ago

albert-queralto commented 2 weeks ago

Describe your problem

Right now, the registration form allows anybody who has access to the tool to register. I would like to know if there is a way to use secure authentication methods that limit the registration to certain type of emails (allowing certain @domain.xxx) or third party methods such as google, microsoft or github authentication.

KevinHuSh commented 2 weeks ago

All these kind of features are easy to implement as long as a slight alteration of front end code. Github authentication is supported. But you need to alter the front end code to show that button.

albert-queralto commented 2 weeks ago

Thank you very much for your reply.