From 05f0b31a5b789c18e9c6f8faf0ab4459514ed992 Mon Sep 17 00:00:00 2001 From: Kenneth Geisshirt Date: Tue, 15 May 2018 18:20:20 +0200 Subject: [PATCH] Using longer names. --- docs/permission.js | 16 +++++++++++++++- docs/sync.js | 2 ++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/permission.js b/docs/permission.js index dc4d03fb..e1ed63d4 100644 --- a/docs/permission.js +++ b/docs/permission.js @@ -240,7 +240,9 @@ class PermissionOfferResponse { * the properties of Permission depend on what the permission is applied to, and so are * left undocumented here. * @since 2.3.0 -*/ + * + * @memberof Realm.Sync + */ class Permission { /** @@ -317,6 +319,9 @@ class Permission { * a Realm, and can also be created manually if you wish to grant permissions to a user * which has not yet connected to this Realm. * @since 2.3.0 + * @class + * @name Realm.Sync.Permission.User + * @memberof Realm.Sync.Permission */ class User { /** @@ -337,6 +342,9 @@ class User { * connect to the Realm are automatically added to it. Any other roles you wish to use are * managed as normal Realm objects. * @since 2.3.0 + * @class + * @name Realm.Sync.Permission.Role + * @memberof Realm.Sync.Permission */ class Role { /** @@ -358,6 +366,9 @@ class Role { * An instance of this object is automatically created in the Realm for class in your schema, * and should not be created manually. * @since 2.3.0 + * @class + * @name Realm.Sync.Permission.Class + * @memberof Realm.Sync.Permission */ class Class { /** @@ -379,6 +390,9 @@ class Class { * An object of this type is automatically created in the Realm for you, and more objects * cannot be created manually. * @since 2.3.0 + * @class + * @name Realm.Sync.Permission.Realm + * @memberof Realm.Sync.Permission */ class Realm { /** diff --git a/docs/sync.js b/docs/sync.js index 81af134d..c292c61d 100644 --- a/docs/sync.js +++ b/docs/sync.js @@ -16,6 +16,7 @@ // //////////////////////////////////////////////////////////////////////////// + /** * When opening a Realm created with Realm Mobile Platform v1.x, it is automatically * migrated to the v2.x format. In case this migration @@ -646,6 +647,7 @@ class Worker { /** * Class for creating custom Data Connectors. Only available in the Enterprise Edition. + * * @memberof Realm.Sync */ class Adapter {