gnu-social/plugins/OpenID
Alexei Sorokin 62b90c29db [DATABASE] Introduce a bool type in schema
PostgreSQL has a clear distinction between integers and booleans, so it makes
sense to draw a clear line.
2019-09-11 11:25:39 +03:00
..
actions [DATABASE] Introduce a bool type in schema 2019-09-11 11:25:39 +03:00
classes [CORE] MySQL 5.5 support fully restored 2019-07-25 15:35:24 +01:00
doc-src Update openid docs 2011-09-30 14:52:51 -04:00
extlib OpenID access control options: trusted provider URL, Launchpad team restrictions. Added an admin panel for setting these and OpenID-only mode, off by default. 2010-05-18 13:28:41 -07:00
lib Move some last OpenID stuff into the OpenID plugin (XRDS) 2015-06-04 01:08:03 +02:00
locale [PLUGINS] Removed GeoURL as the service doesn't exist anymore 2019-08-24 01:59:36 +01:00
OpenIDPlugin.php [CORE] Plugin API now extends a new Module API 2019-08-24 01:59:33 +01:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00
openid.php [CORE] Plugin API now extends a new Module API 2019-08-24 01:59:33 +01:00

README

The OpenID plugin allows users to use OpenID to login.

See: http://openid.net/

Installation
============
This plugin is enabled by default

Settings
========
openidonly: Whether we only allow logins through OpenID.
trusted_provider: URL to the OpenID provider.
append_username: Whether to append the username at the end of the OpenID URL

Example
=======
$config['site']['openidonly'] = true;
$config['openid']['trusted_provider'] = "http://example.org";
$config['openid']['append_username'] = true;
addPlugin('OpenID');