Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSP-40409 fixed the the error in app services docs #775

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion source/authentication/email-password.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Email/Password Authentication

.. default-domain:: mongodb

.. meta::
:description: Learn about using email/password authentication in your Atlas App Services App.

.. facet::
:name: genre
:values: reference

.. contents:: On this page
:local:
:backlinks: none
Expand Down Expand Up @@ -531,7 +538,7 @@ The custom password reset function must return an object that contains a
it does not directly handle a ``pending`` case. You must implement custom
logic in your application to complete the password reset process. For
example, you might implement a deep link or universal link in the client
to extract the ``token`` and ``tokenId``, and then call the the
to extract the ``token`` and ``tokenId``, and then call the
``resetPassword`` method to complete a reset.

* - ``fail``
Expand Down
9 changes: 8 additions & 1 deletion source/functions/mongodb/read.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ Read Data from MongoDB Atlas - Functions

.. default-domain:: mongodb

.. meta::
:description: Use Atlas Functions to query and read data from MongoDB Atlas.

.. facet::
:name: genre
:values: reference

.. contents:: On this page
:local:
:backlinks: none
Expand Down Expand Up @@ -269,7 +276,7 @@ For more information, see the :manual:`Query an Array
.. example::

The following query matches documents where the ``reviews`` array
contains one or more elements that match all of the the specified
contains one or more elements that match all of the specified
documents:

.. code-block:: javascript
Expand Down
4 changes: 2 additions & 2 deletions source/openapi-admin-v3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4093,7 +4093,7 @@ paths:
in: query
description: |-
The ISO 8601 date and time of the end of the query period. Default is
23:59:59 UTC on the the last day of the current month.
23:59:59 UTC on the last day of the current month.
schema:
type: string
required: false
Expand Down Expand Up @@ -4206,7 +4206,7 @@ paths:
in: query
description: |-
The ISO 8601 date and time of the end of the query period. Default is
23:59:59 UTC on the the last day of the current month.
23:59:59 UTC on the last day of the current month.
schema:
type: string
required: false
Expand Down
10 changes: 8 additions & 2 deletions source/reference/config/auth.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
User & Authentication Provider Configuration Files
==================================================

.. default-domain:: mongodb

.. meta::
:description: Enable and configure authentication providers in your Atlas App Services App.

.. facet::
:name: genre
:values: reference

.. contents:: On this page
:local:
Expand Down Expand Up @@ -77,7 +83,7 @@ configuration fields.
* - | ``name``
| ``string``
- The name of the authentication provider. This will always be the same as
the the provider's ``type``.
the provider's ``type``.

* - | ``type``
| ``string``
Expand Down
9 changes: 8 additions & 1 deletion source/reference/config/v20210101/auth.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ User & Authentication Provider Configuration Files

.. default-domain:: mongodb

.. meta::
:description: Enable and configure authentication providers in your Atlas App Services App using the deprecated Realm CLI.

.. facet::
:name: genre
:values: reference

.. contents:: On this page
:local:
:backlinks: none
Expand Down Expand Up @@ -81,7 +88,7 @@ configuration fields.
* - | ``name``
| String
- The name of the authentication provider. This will always be the same as
the the provider's ``type``.
the provider's ``type``.

* - | ``type``
| String
Expand Down
2 changes: 1 addition & 1 deletion source/tutorial/cpp.txt
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ when the app opens, we add a subscription for all ``Item`` objects:
In the ``toggleSubscriptions()`` function, we switch the subscription,
depending on the current subscription state. In the UI, the user can
toggle between showing all items, or showing only their own items.
Within this function, find the the ``_myItemSubscriptionName`` logic.
Within this function, find the ``_myItemSubscriptionName`` logic.
If there isn't already a subscription for this subscription name, the app
adds a subscription to all documents where the ``owner_id`` property
matches the authenticated user's id.
Expand Down
Loading