Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix template: MongoDB database name parsing
From the feathers discord: The current parsing method fails the following MongoDB connection string: ``` mongodb://user:P%40ss@localhost:27017/databaseName?authSource=admin ``` Where it parses `databaseName?authSource=admin` as the database name instead of just `databaseName`. The following change should parse all database connection strings correctly.
- Loading branch information