feat: import/export system config

This commit is contained in:
spiral 2021-11-30 17:04:42 -05:00
parent 9097142718
commit cc4e659cec
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
6 changed files with 30 additions and 9 deletions

View file

@ -100,7 +100,7 @@ public class ImportExport
var json = await ctx.BusyIndicator(async () =>
{
// Make the actual data file
var data = await _dataFiles.ExportSystem(ctx.System, ctx.Config.UiTz);
var data = await _dataFiles.ExportSystem(ctx.System);
return JsonConvert.SerializeObject(data, Formatting.None);
});