From 9f3aeb22d9bab6e9c87bfd0f757e9e32c38b0117 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Thu, 17 Aug 2017 20:48:22 +0200 Subject: [PATCH] docs: add references to Flask-Appbuilder Security documentation (#3322) And a specific link to an oauth example configuration. --- docs/faq.rst | 8 +++++++- docs/security.rst | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index d06c6c9462fae..b6f2788e90734 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -173,7 +173,7 @@ different sections of the code do: https://github.com/airbnb/superset/pull/3013 What database engine can I use as a backend for Superset? --------------------------------------------------------- +--------------------------------------------------------- To clarify, the *database backend* is an OLTP database used by Superset to store its internal information like your list of users, slices and dashboard definitions. @@ -184,3 +184,9 @@ install Superset on one of these database server for production. Using a column-store, non-OLTP databases like Vertica, Redshift or Presto as a database backend simply won't work as these databases are not designed for this type of workload. Installation on Oracle, Microsoft SQL Server, or other OLTP databases may work but isn't tested. Please note that pretty much any databases that have a SqlAlchemy integration should work perfectly fine as a datasource for Superset, just not as the OLTP backend. + +How can i configure OAuth authentication and authorization? +----------------------------------------------------------- + +You can take a look at this Flask-AppBuilder `configuration example +`_. diff --git a/docs/security.rst b/docs/security.rst index b5d5b63456dec..f615392ea7c52 100644 --- a/docs/security.rst +++ b/docs/security.rst @@ -3,7 +3,8 @@ Security Security in Superset is handled by Flask AppBuilder (FAB). FAB is a "Simple and rapid application development framework, built on top of Flask.". FAB provides authentication, user management, permissions and roles. - +Please read its `Security documentation +`_. Provided Roles --------------