We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6a38c0c + 2fdddb2 commit bfe6b9fCopy full SHA for bfe6b9f
src/Umbraco.Cms.Integrations.Search.Algolia/Configuration/AlgoliaSettings.cs
@@ -7,6 +7,6 @@ public class AlgoliaSettings
7
8
public string AdminApiKey { get; set; }
9
10
- public string ApiKey { get; set; }
+ public string SearchApiKey { get; set; }
11
}
12
src/Umbraco.Cms.Integrations.Search.Algolia/Services/AlgoliaSearchService.cs
@@ -19,7 +19,7 @@ public AlgoliaSearchService(IOptions<AlgoliaSettings> options)
19
20
public SearchResponse<Record> Search(string indexName, string query)
21
{
22
- var client = new SearchClient(_settings.ApplicationId, _settings.AdminApiKey);
+ var client = new SearchClient(_settings.ApplicationId, _settings.SearchApiKey);
23
24
var index = client.InitIndex(indexName);
25
0 commit comments