Skip to content

Atlas App Services

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

91 results found

  1. ObjectId

    We need a way for ids to not have to be unwrapped from $oid before they are assigned as an ObjectId.

    Incoming data:

    {"_id":{"$oid":"..."}}

    Realm class:

    class Item: Object {
    @objc dynamic var _id = ObjectId.generate()
    }

    That's all that should be needed.

    So the default ObjectId class needs:

    enum CodingKeys: String, CodingKey {
    case oid = "$oid"
    }

    then in init(from decoder:Decoder)

    let container = try decoder.container(keyedBy: CodingKeys.self)
    try super.init(string: try container.decode(String.self, forKey: .oid))

    Do that when the .singleValueContainer() call fails.
    That way both use cases are satisfied.

    2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. Email/Password Auth password requirement options

    Email/Password Auth currently only validates passwords to be from 6 to 20 character long.
    We need more requirement options, such as:

    Minimum length, which must be at least 6 characters but fewer than 99 characters. User chooses the min and max option.
    Require numbers
    Require a special character from this set:
    ^ $ * . [ ] { } ( ) ? " ! @ # % & / \ , > < ' : ; | _ ~ `
    The plus "+" and minus "-" sign do not meet special character requirements.
    Require uppercase letters
    Require lowercase letters

    2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. Allow hosting of frameworks like NextJS or Gatsby

    Currently the hosting only supports static sites. Would be great if it allowed for hosting apps built with frameworks like NextJS or Gatsby.

    2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. Configure refresh token from json deployment files with appservices push

    It would be great if the refresh token could be configured through the 'appservices push' deployment mode in addition to the Admin API.

    It would simplify deployment and would avoid to implement several methods for configuring the application.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. Establish communication between the app and the Project Clusters over a Peer-To-Peer network rather than the internet

    We would like to request a change to the data transmition related to Device Sync between Device Sync app and the Project Clusters.

    When both the Device Sync app and the Project Clusters are running on the same Cloud Service Provider such as GCP, syncing with servers should be done over a Peer-To-Peer network rather than the internet.

    This will help make the data transfer be for cost effective and efficient.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. Improve Datadog integration

    We're using the Datadog integration for monitoring and alerting. With the monitoring we're having to create custom logic to determine alerting thresholds that are tied to sizes, like connections and memory. We would like additional metrics to be sent to indicate percentage of max for some of these metrics so we can setup our alerts easier.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. Allow Customers to subscribe to Atlas App Services Release notes and have them emailed directly to us.

    Allow Customers to subscribe to Atlas App Services Release notes and have them emailed directly to us. Ideally, we would like to have an idea of what is being released a week ahead of time so we can see if any of the new features we can immediately use to accelerate development.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. MFA support

    Enable MultiFactor Authentication in MongoDB App Services authentication. Thus the developers does not need any third party support. They can choose from other Factors (SMS, Whatsapp, E-mail, Push Notification) while selecting the Authentication Providers.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. Add IP Address BlackList/DisallowList

    Currently, we can only add a whitelist/allowlist IP address ranges which makes it very very hard to just block a specific country or a list of IP addresses.

    The main use case for this is blocking a list of IP Address ranges that are harmful such as if our application is under a DDOS attack or other forms of brute force attacks.

    This is really important to improve the application security and prevent DDOS attacks which in this day and age is very likely for any web/mobile application that has any noticeable traction.

    Services such as Azure already provide such…

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. Cost Break Up for App Services inside Atlas Project

    Looking for details cost break down based on the Atlas App Services inside a Project. We can definitely get the overall Project cost but need to understand how much each Atlas App costing ? Is that available with Atlas AppService UI/ other places ?

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. Add ability to capture pre-change images within a given collection ONLY prior to a remove event rather than for updates AND remove events

    I understand that turning on 'recordPreImages' is required in order to get a copy of a document which is removed from a collection as part of a change stream for a given collection. What I would like to suggest is to add an option that can be set to ONLY capture pre-change images for 'remove' events.

    Basically, for my particular use case, the only time I need access to the 'pre image' is on delete (so I can do some post-processing for which I need to know what some of the attributes of the document were prior to it being…

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. Support One Time Password (OTP) authentication method

    Account creation / login using 6 digit OTP via email.

    No need for authenticating with 3rd party service or email/password.

    Also can be used for "magic link" account creation / logins.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  13. deletion protection for realm apps and custom app Id's

    It should be very hard to delete a production app because If it gets deleted you guys don't support fully customised Ids. for Instance my appId is xyz-123-ybaga the last string is added randomly giving us no control over it. In case someone by mistake delete the app, It is impossible to create an app with same app Id again due to which I'll have to publish a force update for my apps.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. sync

    I have faced an issue while using Device Sync.
    I wanted to disable Device Sync but the process takes a lot of time for terminating.
    Please solve this issue.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. Add expansion for database and collection in Rules Expressions

    In a rule expression, in addition to expansions such as %%user and %%request, it would be very useful to have an expansion variable for the database and collection. This would allow granting or blocking access to the data based on which database or collection is queried.

    For example, in a multi-tenant application, users authenticate with a JWT token which contains an ID that identifies which data they can access. Currently, we can only check the ID against an element in documents so we have to put that ID in every document. Each collection contains data from a single ID, so…

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. Azure PrivateLink support

    Adding support for Azure Private Link would make App Services accessible to customers who don't want to send data (even TLS encrypted) over public internet.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. Better management of outgoing IP addresses

    MongoDB publishes the list of outgoing IPs, but it is very long and there are no ranges, just dozens of random IP addresses.

    It would be nice to have better options to manage this. Perhaps a paid option for narrower or custom IP ranges. Notifications when the approved IP list changes in any way?

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. Integrate with Microsoft Sentinel SIEM

    Please provide integration with the Microsoft Azure Sentinel SIEM as a connector.
    This would allow us to ingest MongoDB audit and user data into it for security reasons.

    Link: https://learn.microsoft.com/en-us/azure/sentinel/create-custom-connector

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. Allow using Relationships in Rule Expressions

    When setting up the rules for a collection, sometimes I want to configure a role so that it can only perform a given action if a related document in a different collection has a field with a certain value. To do this now, it requires creating a Realm Function that queries that other collection for the related document, then returning the document, and finally having the the rule expression call that function and evaluate the document's fields.

    While this does work, I think this could be made even easier by extending Relationships to be used in Rule Expressions. Currently, Relationships…

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. Configure Change Streams to publish via Web Sockets

    It would be great of configuring a change stream (with certain filter and projection etc) to publish messages via a standard web socket as part of realm BaaS

    put simply auto implementing backend server as detailed in

    https://www.mongodb.com/developer/how-to/subscribing-changes-browser-websockets/

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  • Don't see your idea?

Feedback and Knowledge Base