diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-06-24 10:01:40 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-10-13 16:43:54 +0300 |
commit | e2332d92ceae60cf333b9ad930f80410daf6615e (patch) | |
tree | 8268c3ca04177b57e6519cd37738962306e2e474 /docs/dev.md | |
parent | 96d320bdfecdb147cfbd7e74156f546885821915 (diff) | |
download | pleroma-e2332d92ceae60cf333b9ad930f80410daf6615e.tar.gz |
LegacyAuthenticationPlug module name
Diffstat (limited to 'docs/dev.md')
-rw-r--r-- | docs/dev.md | 2 |
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. |