From f8cbf1d4b2ebdbca6d0a7a5695e743f01c27fafe Mon Sep 17 00:00:00 2001 From: Debbie Matthews Date: Sun, 17 Mar 2024 01:49:32 -0700 Subject: [PATCH] Remove personalization --- content/library/api/personalization/_index.md | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 content/library/api/personalization/_index.md diff --git a/content/library/api/personalization/_index.md b/content/library/api/personalization/_index.md deleted file mode 100644 index 6b23f0e28..000000000 --- a/content/library/api/personalization/_index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Personalize apps for the user -slug: /develop/api-reference/personalization ---- - -# Personalize apps for the user - - - - -

User info

- -`st.experimental_user` returns information about the logged-in user of private apps on Streamlit Community Cloud. - -```python -if st.experimental_user.email == "foo@corp.com": - st.write("Welcome back, ", st.experimental_user.email) -else: - st.write("You are not authorized to view this page.") -``` - -
-