generated from Kentico/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Azure): Admin UI enhancement containing mostly multi select drop…
…down for included Content types on indexed paths
- Loading branch information
Showing
15 changed files
with
2,248 additions
and
2,168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+38.9 KB
(140%)
images/xperience-administration-search-index-edit-form-paths-edit.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/Kentico.Xperience.AzureSearch/Admin/AzureSearchIndexContentType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace Kentico.Xperience.AzureSearch.Admin; | ||
|
||
public class AzureSearchIndexContentType | ||
{ | ||
/// <summary> | ||
/// Name of the indexed content type for an indexed path | ||
/// </summary> | ||
public string ContentTypeName { get; set; } = ""; | ||
|
||
/// <summary> | ||
/// Displayed name of the indexed content type for an indexed path which will be shown in admin UI | ||
/// </summary> | ||
public string ContentTypeDisplayName { get; set; } = ""; | ||
|
||
public AzureSearchIndexContentType() | ||
{ } | ||
|
||
public AzureSearchIndexContentType(string className, string classDisplayName) | ||
{ | ||
ContentTypeName = className; | ||
ContentTypeDisplayName = classDisplayName; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3,489 changes: 1,670 additions & 1,819 deletions
3,489
src/Kentico.Xperience.AzureSearch/Admin/Client/package-lock.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.