allow host to change runtime and rendermode settings in System Info

This commit is contained in:
Shaun Walker
2021-06-06 11:04:37 -04:00
parent 900ea8cfbc
commit 54cd360bb5
4 changed files with 53 additions and 4 deletions

View File

@ -22,5 +22,10 @@ namespace Oqtane.Services
{
return await GetJsonAsync<Dictionary<string, string>>(Apiurl);
}
public async Task UpdateSystemInfoAsync(Dictionary<string, string> settings)
{
await PostJsonAsync(Apiurl, settings);
}
}
}