added new methods for managing visitor settings (for personalization)
This commit is contained in:
@ -111,6 +111,26 @@ namespace Oqtane.Services
|
||||
await UpdateSettingsAsync(hostSettings, EntityNames.Host, -1);
|
||||
}
|
||||
|
||||
public async Task<Dictionary<string, string>> GetVisitorSettingsAsync(int visitorId)
|
||||
{
|
||||
if (visitorId != -1)
|
||||
{
|
||||
return await GetSettingsAsync(EntityNames.Visitor, visitorId);
|
||||
}
|
||||
else
|
||||
{
|
||||
return new Dictionary<string, string>();
|
||||
}
|
||||
}
|
||||
|
||||
public async Task UpdateVisitorSettingsAsync(Dictionary<string, string> visitorSettings, int visitorId)
|
||||
{
|
||||
if (visitorId != -1)
|
||||
{
|
||||
await UpdateSettingsAsync(visitorSettings, EntityNames.Visitor, visitorId);
|
||||
}
|
||||
}
|
||||
|
||||
public async Task<Dictionary<string, string>> GetSettingsAsync(string entityName, int entityId)
|
||||
{
|
||||
var dictionary = new Dictionary<string, string>();
|
||||
|
Reference in New Issue
Block a user