Merge pull request #1856 from realm/kneth/fix-jsdoc
Fixing JS doc + template
This commit is contained in:
commit
0b7aed2885
|
@ -1 +1 @@
|
|||
Subproject commit 441d8a45eb39d454ea612251bf2adb60473ede70
|
||||
Subproject commit 682e21fe456b39169ff2d4f3f7ffc24d04cb84fd
|
|
@ -28,8 +28,6 @@
|
|||
* materialized for the affected Realm files and the affected user.
|
||||
* Once the request has been processed, the Status, StatusMessage, and
|
||||
* ErrorCode will be updated accordingly.
|
||||
* @class
|
||||
* @name Realm.Sync.User.PermissionChange
|
||||
* @memberof Realm.Sync.User
|
||||
*/
|
||||
class PermissionChange {
|
||||
|
@ -107,8 +105,6 @@ class PermissionChange {
|
|||
* with users you wish to grant permissions to.
|
||||
* If the request has failed, statusMessage will be updated with relevant information about the
|
||||
* failure and statusCode will be set.
|
||||
* @class
|
||||
* @name Realm.Sync.User.PermissionOffer
|
||||
* @memberof Realm.Sync.User
|
||||
*/
|
||||
class PermissionOffer {
|
||||
|
@ -190,8 +186,6 @@ class PermissionOffer {
|
|||
* to connect to the Realm.
|
||||
* If the request has failed, the statusMessage will be updated with relevant information about the
|
||||
* failure and statusCode will be set.
|
||||
* @class
|
||||
* @name Realm.Sync.User.PermissionOfferResponse
|
||||
* @memberof Realm.Sync.User
|
||||
*/
|
||||
class PermissionOfferResponse {
|
||||
|
@ -249,9 +243,6 @@ class PermissionOfferResponse {
|
|||
* the properties of Permission depend on what the permission is applied to, and so are
|
||||
* left undocumented here.
|
||||
* @since 2.3.0
|
||||
*
|
||||
* @class
|
||||
* @name Realm.Sync.Permission
|
||||
* @memberof Realm.Sync
|
||||
*/
|
||||
class Permission {
|
||||
|
@ -351,8 +342,6 @@ 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 {
|
||||
|
@ -375,8 +364,6 @@ 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 {
|
||||
|
@ -399,8 +386,6 @@ 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 {
|
||||
|
|
|
@ -541,8 +541,6 @@ class User {
|
|||
* client (and a local Realm file on disk), and the server (and a remote Realm at a given URL stored on a Realm Object Server).
|
||||
* Sessions are always created by the SDK and vended out through various APIs. The lifespans of sessions
|
||||
* associated with Realms are managed automatically.
|
||||
* @class
|
||||
* @name Realm.Sync.Session
|
||||
* @memberof Realm.Sync
|
||||
*/
|
||||
class Session {
|
||||
|
|
Loading…
Reference in New Issue