Netcore: Get rid of default files in config folder (#9966)

* TourController now uses the core tours from embedded resources

* Moved tinyMceConfig.*.config to IOptions

* Embedded the default grid.editors.config.js

* Fixed issue when saving grid with an empty media cell

* Logviewer now uses sql as database instead of file.

* Remove config folder from build script and nuget pacakges.

* Removing auto-generated Id added to appsettings.json

* Update src/Umbraco.Web.BackOffice/Controllers/TourController.cs

Co-authored-by: Elitsa Marinovska <elm@umbraco.dk>
Co-authored-by: Elitsa Marinovska <21998037+elit0451@users.noreply.github.com>
This commit is contained in:
Bjarke Berg
2021-03-11 13:20:46 +01:00
committed by GitHub
parent 91e877cebe
commit 2b89839724
56 changed files with 668 additions and 505 deletions

View File

@@ -0,0 +1,10 @@
using Umbraco.Cms.Core.Models.Entities;
namespace Umbraco.Cms.Core.Models
{
public interface ILogViewerQuery : IEntity
{
string Name { get; set; }
string Query { get; set; }
}
}