cleanup
This commit is contained in:
@ -42,7 +42,7 @@ namespace Oqtane.Services
|
||||
/// Clears site option cache
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task ClearSiteSettingsCacheAsync(int siteId);
|
||||
Task ClearSiteSettingsCacheAsync();
|
||||
|
||||
/// <summary>
|
||||
/// Returns a key-value dictionary of all page settings for the given page
|
||||
|
@ -42,9 +42,9 @@ namespace Oqtane.Services
|
||||
await UpdateSettingsAsync(siteSettings, EntityNames.Site, siteId);
|
||||
}
|
||||
|
||||
public async Task ClearSiteSettingsCacheAsync(int siteId)
|
||||
public async Task ClearSiteSettingsCacheAsync()
|
||||
{
|
||||
await DeleteAsync($"{Apiurl}/clear/{siteId}");
|
||||
await DeleteAsync($"{Apiurl}/clear");
|
||||
}
|
||||
|
||||
public async Task<Dictionary<string, string>> GetPageSettingsAsync(int pageId)
|
||||
|
Reference in New Issue
Block a user