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(Algolia): dropdown for included content types
- Loading branch information
Showing
17 changed files
with
2,267 additions
and
2,286 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
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
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,6 @@ | ||
DOMAIN:localhost | ||
PRODUCT:CX22 | ||
EXPIRATION:00000000 | ||
OWNER:Nittin-local development | ||
SERVERS:0 | ||
ZTSVuoBHA0GH4u8Y9dm0dHqEuQHJ1orNsSkQssxpeBjJuqdy31jE2nzVinqiQXNHeablLDeszZHIODqJ6U5ZY2gs68/15O5Bstw86X+4dRsCbkeJJMOY+gr3g65I/hO3kU7RkmJPy0oTFjE9qGp+pauo+O5kiIlYBUFnx+5OnP5mM8XAHGQ4o4xIn3s5+EK3EztWRXo1mTOZGg9doty463TcqfI1oYSM6TxDZ+cs7SIHoe452o3DZ+l1Apw9+fRoSMMHb1hACBUfVBg2R5NFy0aZMnPOQq9HLcHEJqusGfRDh1fuMCYa7SJUlj0UAyJlVbGI0gA6lSgYK0Oz0WwCGQ== |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.100", | ||
"version": "8.0.101", | ||
"rollForward": "latestMajor", | ||
"allowPrerelease": false | ||
} | ||
|
Binary file modified
BIN
+53.6 KB
(170%)
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.Algolia/Admin/AlgoliaIndexContentType.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.Algolia.Admin; | ||
|
||
public class AlgoliaIndexContentType | ||
{ | ||
/// <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 AlgoliaIndexContentType() | ||
{ } | ||
|
||
public AlgoliaIndexContentType(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
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.