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/backend | |
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/backend')
-rw-r--r-- | apps/files_external/lib/backend/backend.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/lib/backend/backend.php b/apps/files_external/lib/backend/backend.php index 90d5d38ed94..68585cf377e 100644 --- a/apps/files_external/lib/backend/backend.php +++ b/apps/files_external/lib/backend/backend.php @@ -142,6 +142,7 @@ class Backend implements \JsonSerializable { */ public function jsonSerialize() { $data = $this->jsonSerializeDefinition(); + $data += $this->jsonSerializeIdentifier(); $data['backend'] = $data['name']; // legacy compat $data['priority'] = $this->getPriority(); |