diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-17 16:40:56 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-23 12:10:02 +0200 |
commit | 060d16961596b24a2d0cf9e30408482ce33cefe6 (patch) | |
tree | f2914e4ed2bde08c0fe68ccd82bce137396140f2 /apps/files_external/lib/auth | |
parent | 38a260e963abd04b75aff8d67a8cf7b3b20a9c67 (diff) | |
download | nextcloud-server-060d16961596b24a2d0cf9e30408482ce33cefe6.tar.gz nextcloud-server-060d16961596b24a2d0cf9e30408482ce33cefe6.zip |
Add deprecation mechanic to IdentifierTrait
Deprecation allows a backend/auth mechanism to designate an object that
it deprecates to, allowing clean transitions to updated codebases.
Diffstat (limited to 'apps/files_external/lib/auth')
-rw-r--r-- | apps/files_external/lib/auth/authmechanism.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_external/lib/auth/authmechanism.php b/apps/files_external/lib/auth/authmechanism.php index 11d99bb330d..2ab34ed0105 100644 --- a/apps/files_external/lib/auth/authmechanism.php +++ b/apps/files_external/lib/auth/authmechanism.php @@ -92,6 +92,8 @@ class AuthMechanism implements \JsonSerializable { */ public function jsonSerialize() { $data = $this->jsonSerializeDefinition(); + $data += $this->jsonSerializeIdentifier(); + $data['scheme'] = $this->getScheme(); return $data; |