DesktopApp.add_user_database_using_firebase#
- DesktopApp.add_user_database_using_firebase(collection_name='users')#
Adds Firebase user database to the app.
Make sure you create a firestore database (not realtime) in your Firebase app.
Warning
A collection called users (or whatever you input as collection_name) will be created in the database. If you already have a collection with the same name, it might be overwritten.
- Parameters:
collection_name (str, default="users") – The name of the collection that will be created/modified in the database.
admonition: (..) –
Behind The Scenes: :class: tip
Firebase authentication and database are used when calling this function.