@@ -27,7 +27,7 @@ A. Create an Atlas account, if you don't already have one. *(3 minutes)*
27
27
our pre-made Task Tracker backend. *(5 minutes)*
28
28
29
29
Once we've finished these steps, we can start writing code to implement
30
- a frontend using iOS, Android , or JavaScript.
30
+ a frontend using Swift, Kotlin , or JavaScript.
31
31
32
32
.. _tutorial-task-tracker-create-an-atlas-account:
33
33
@@ -321,10 +321,12 @@ import command successfully created a new app:
321
321
322
322
.. code-block:: console
323
323
324
- Successfully imported 'tasktracker-mrksq '
324
+ Successfully imported 'tasktracker-... '
325
325
326
- You'll use this App ID to connect to your {+app+} in the client SDK
327
- tutorials.
326
+ .. important::
327
+
328
+ Note down this Realm app ID ("tasktracker-..."). You'll use this Realm app ID to
329
+ connect to your {+app+} in the client SDK tutorials.
328
330
329
331
You can also confirm that your app was created successfully by
330
332
navigating to the :guilabel:`Realm` tab in the Atlas UI. You should
@@ -435,8 +437,23 @@ write a particular {+realm+}.
435
437
436
438
.. see::
437
439
438
- To learn more about {+sync+} , see the
439
- :ref:`documentation on Sync <sync>`.
440
+ To learn more about {+sync+}, see :ref:`sync`.
441
+
442
+ Custom User Data & Permissions
443
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
444
+
445
+ In {+service+}, each user can have an associated :ref:`custom data object
446
+ <custom-user-data>`. We designed this app to use data stored in the user's
447
+ custom data to determine permissions -- that is, whether that user can read or
448
+ write a given realm or set of data, such as a project. While {+service-short+}
449
+ allows clients to read and write data depending on how you configure your app
450
+ permissions, we configured this app so that only :ref:`system functions
451
+ <system-functions>` running on the backend can modify a user's custom data
452
+ object. This prevents clients from arbitrarily granting themselves permissions.
453
+
454
+ .. see::
455
+
456
+ To learn more about custom user data, see :ref:`custom-user-data`.
440
457
441
458
Functions
442
459
~~~~~~~~~
0 commit comments