diff options
| author | Theron Luhn <theron@luhn.com> | 2019-06-23 12:19:06 -0700 |
|---|---|---|
| committer | Theron Luhn <theron@luhn.com> | 2019-06-23 12:19:06 -0700 |
| commit | 14d569ea34409ed796296f860f03b8403859412f (patch) | |
| tree | c290c9d9baf53f43869317ae93aa973f2b0f34a1 /docs/api | |
| parent | 5d79e3f232dfbbda1a88a3dac9f990773d1699b7 (diff) | |
| download | pyramid-14d569ea34409ed796296f860f03b8403859412f.tar.gz pyramid-14d569ea34409ed796296f860f03b8403859412f.tar.bz2 pyramid-14d569ea34409ed796296f860f03b8403859412f.zip | |
Deprecation notices.
Diffstat (limited to 'docs/api')
| -rw-r--r-- | docs/api/request.rst | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/docs/api/request.rst b/docs/api/request.rst index e7b2edc9a..8e0f77b87 100644 --- a/docs/api/request.rst +++ b/docs/api/request.rst @@ -166,7 +166,11 @@ .. attribute:: authenticated_userid - .. versionadded:: 1.5 + .. deprecated:: 2.0 + + ``authenticated_userid`` has been replaced by + :attr:`authenticated_identity` in the new security system. See + :ref:`upgrading_auth` for more information. A property which returns the :term:`userid` of the currently authenticated user or ``None`` if there is no :term:`authentication @@ -178,7 +182,11 @@ .. attribute:: unauthenticated_userid - .. versionadded:: 1.5 + .. deprecated:: 2.0 + + ``unauthenticated_userid`` has been replaced by + :attr:`authenticated_identity` in the new security system. See + :ref:`upgrading_auth` for more information. A property which returns a value which represents the *claimed* (not verified) :term:`userid` of the credentials present in the @@ -193,7 +201,10 @@ .. attribute:: effective_principals - .. versionadded:: 1.5 + .. deprecated:: 2.0 + + The new security policy has removed the concept of principals. See + :ref:`upgrading_auth` for more information. A property which returns the list of 'effective' :term:`principal` identifiers for this request. This list typically includes the |
