diff options
author | kaniini <nenolod@gmail.com> | 2019-06-04 05:42:49 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-06-04 05:42:49 +0000 |
commit | a536f515dd2334e723f4e4c593724760511c5c1b (patch) | |
tree | 61f677d61b1dde0e18fa0abc4e7bc5a296212652 /docs/config.md | |
parent | 2be142ebec5292f519d10974c73ab6068a2b96c4 (diff) | |
parent | 83663caa81f1ccca37fe3898feb4ec2d829ad893 (diff) | |
download | pleroma-a536f515dd2334e723f4e4c593724760511c5c1b.tar.gz |
Merge branch 'ueberauth_config_extension' into 'develop'
Ueberauth: extended format of OAUTH_CONSUMER_STRATEGIES to allow explicit dependency specification
See merge request pleroma/pleroma!1234
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/config.md b/docs/config.md index 4797879d6..e37ae6b95 100644 --- a/docs/config.md +++ b/docs/config.md @@ -497,7 +497,7 @@ Authentication / authorization settings. * `auth_template`: authentication form template. By default it's `show.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/show.html.eex`. * `oauth_consumer_template`: OAuth consumer mode authentication form template. By default it's `consumer.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/consumer.html.eex`. -* `oauth_consumer_strategies`: the list of enabled OAuth consumer strategies; by default it's set by OAUTH_CONSUMER_STRATEGIES environment variable. +* `oauth_consumer_strategies`: the list of enabled OAuth consumer strategies; by default it's set by OAUTH_CONSUMER_STRATEGIES environment variable. Each entry in this space-delimited string should be of format `<strategy>` or `<strategy>:<dependency>` (e.g. `twitter` or `keycloak:ueberauth_keycloak_strategy` in case dependency is named differently than `ueberauth_<strategy>`). ## OAuth consumer mode |