summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2020-06-24 10:01:40 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2020-10-13 16:43:54 +0300
commite2332d92ceae60cf333b9ad930f80410daf6615e (patch)
tree8268c3ca04177b57e6519cd37738962306e2e474 /docs
parent96d320bdfecdb147cfbd7e74156f546885821915 (diff)
LegacyAuthenticationPlug 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 085d66760..e3e04c8eb 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.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.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.