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

@@ -18,16 +18,29 @@
},
"Umbraco": {
"CMS": {
"Global": {
"Smtp": {
// "From": "your@email.here",
// "Host": "localhost",
// "Port": "25"
}
},
"Hosting": {
"Debug": true
}
"Global": {
"Smtp": {
//"From": "your@email.here",
//"Host": "localhost",
// "Port": "25"
}
},
"Hosting": {
"Debug": true
},
"RichTextEditor": {
"Commands" : [
{
"Alias": "fullscreen",
"Name": "Full Screen",
"Mode": "All"
}
],
"Plugins": [
"fullscreen"
]
}
}
}
}