diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ff5b8fc5..abd300533 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [6.7.0] - 2022-04-32 +## [6.7.0] - 2022-04-23 ### Fixed diff --git a/backend/src/Squidex/Areas/Api/Controllers/Apps/AppSettingsController.cs b/backend/src/Squidex/Areas/Api/Controllers/Apps/AppSettingsController.cs index 25643e64d..e587e4d7f 100644 --- a/backend/src/Squidex/Areas/Api/Controllers/Apps/AppSettingsController.cs +++ b/backend/src/Squidex/Areas/Api/Controllers/Apps/AppSettingsController.cs @@ -30,7 +30,7 @@ namespace Squidex.Areas.Api.Controllers.Apps /// /// The name of the app to get the settings for. /// - /// 200 => App settingsd returned. + /// 200 => App settings returned. /// 404 => App not found. /// [HttpGet] diff --git a/backend/src/Squidex/Config/Domain/EventSourcingServices.cs b/backend/src/Squidex/Config/Domain/EventSourcingServices.cs index bee2f27be..8efaba2d1 100644 --- a/backend/src/Squidex/Config/Domain/EventSourcingServices.cs +++ b/backend/src/Squidex/Config/Domain/EventSourcingServices.cs @@ -30,9 +30,9 @@ namespace Squidex.Config.Domain services.AddSingletonAs(c => { var mongoClient = Singletons.GetOrAdd(mongoConfiguration, s => new MongoClient(s)); - var mongDatabase = mongoClient.GetDatabase(mongoDatabaseName); + var mongoDatabase = mongoClient.GetDatabase(mongoDatabaseName); - return new MongoEventStore(mongDatabase, c.GetRequiredService()); + return new MongoEventStore(mongoDatabase, c.GetRequiredService()); }) .As(); },