diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-07-09 12:34:13 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-07-09 12:34:13 -0700 |
commit | 2c4cdd096f77772ae1f07a163e68c033c0fe1b2c (patch) | |
tree | 4f65ed888d26ef882f8f5f6c6ea3368191dc058a | |
parent | 6a93bb4ef7d832419b2c607af20384556b5cbeea (diff) | |
download | mediagoblin-2c4cdd096f77772ae1f07a163e68c033c0fe1b2c.tar.lz mediagoblin-2c4cdd096f77772ae1f07a163e68c033c0fe1b2c.tar.xz mediagoblin-2c4cdd096f77772ae1f07a163e68c033c0fe1b2c.zip |
added openid docs
-rw-r--r-- | docs/source/plugindocs/openid.rst | 2 | ||||
-rw-r--r-- | mediagoblin/plugins/openid/README.rst | 32 |
2 files changed, 34 insertions, 0 deletions
diff --git a/docs/source/plugindocs/openid.rst b/docs/source/plugindocs/openid.rst new file mode 100644 index 00000000..045bf9d0 --- /dev/null +++ b/docs/source/plugindocs/openid.rst @@ -0,0 +1,2 @@ +.. include:: ../../../mediagoblin/plugins/openid/README.rst + diff --git a/mediagoblin/plugins/openid/README.rst b/mediagoblin/plugins/openid/README.rst new file mode 100644 index 00000000..e753b0f9 --- /dev/null +++ b/mediagoblin/plugins/openid/README.rst @@ -0,0 +1,32 @@ +=================== + Openid plugin +=================== + +The Openid plugin allows user to login to your GNU Mediagoblin instance using +their openid url. + +This plugin can be enabled alongside :ref:`basic_auth-chapter` and +:ref:`persona-chapter`. + +.. note:: + When :reg:`basic_auth-chapter` is enabled alongside this Openid plugin, and + a user creates an account using their Openid. If they would like to add a + password to their account, they can use the forgot password feature to do + so. + + +Set up the Openid plugin +============================ + +1. Install the ``python-openid`` package. + +2. Add the following to your MediaGoblin .ini file in the ``[plugins]`` section:: + + [[mediagoblin.plugins.openid]] + +3. Run:: + + gmg dbupdate + + in order to create and apply migrations to any database tables that the + plugin requires. |