-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Description
New Feature / Enhancement Checklist
- I am not disclosing a vulnerability.
- I am not just asking a question.
- I have searched through existing issues.
Current Limitation
Parse Server is historically capable of running multiple apps, differentiated based on their app ID. However, it can be assumed that the vast majority of Parse Server deployments run a single app. This puts the purpose of an app ID in question.
Feature / Enhancement Description
Optionally ignore the app ID in Parse Server. This means that requests won't require to send an app ID in the request header or as part of the URL. That means the URLs can be shorted from https://<domain>/<mount>/apps/<appId>/<path>
to https://<domain>/<mount>/<path>
.
Historically, the parse.com app ID was 40 characters long, so especially for legacy apps this could reduce overhead and resource requirements across the whole network infrastructure incl. logs.
Alternatives / Workarounds
Remove the support of app ID completely. This would require a careful deliberation as the feature may be used by some developers. It may however allow to simplify the Parse Server codebase by removing logic that deals with app ID.