summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-06-24 11:16:09 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-10-13 16:43:58 +0300
commitc497558d433216c12a3335d138716a10d464a922 (patch)
treec9c089a0e9d2d34c8f019124c3d9678188ffc78f /docs
parentc1777e74796d3be4757826ddb3395fc0c13495ff (diff)
AuthenticationPlug module name
Diffstat (limited to 'docs')
-rw-r--r--docs/dev.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev.md b/docs/dev.md
index e3e04c8eb..22e0691f1 100644
--- a/docs/dev.md
+++ b/docs/dev.md
@@ -16,7 +16,7 @@ This document contains notes and guidelines for Pleroma developers.
## [HTTP Basic Authentication](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization)
-* With HTTP Basic Auth, OAuth scopes check is _not_ performed for any action (since password is provided during the auth, requester is able to obtain a token with full permissions anyways). `Pleroma.Plugs.AuthenticationPlug` and `Pleroma.Web.Plugs.LegacyAuthenticationPlug` both call `Pleroma.Web.Plugs.OAuthScopesPlug.skip_plug(conn)` when password is provided.
+* With HTTP Basic Auth, OAuth scopes check is _not_ performed for any action (since password is provided during the auth, requester is able to obtain a token with full permissions anyways). `Pleroma.Web.Plugs.AuthenticationPlug` and `Pleroma.Web.Plugs.LegacyAuthenticationPlug` both call `Pleroma.Web.Plugs.OAuthScopesPlug.skip_plug(conn)` when password is provided.
## Auth-related configuration, OAuth consumer mode etc.