Persist Knowledge Page hierarchy state on refresh (#19236)

This commit is contained in:
sonika-shah 2025-01-07 12:10:36 +05:30 committed by Aniket Katkar
parent f5d2b0167e
commit e02ab41942

View File

@ -212,7 +212,8 @@ public interface SearchClient {
Used for listing knowledge page hierarchy for a given parent and page type, used in Elastic/Open SearchClientExtension
*/
@SuppressWarnings("unused")
default ResultList listPageHierarchy(String parent, String pageType, int offset, int limit) {
default ResultList listPageHierarchy(
String parent, String activeFqn, String pageType, int offset, int limit) {
throw new CustomExceptionMessage(
Response.Status.NOT_IMPLEMENTED, NOT_IMPLEMENTED_ERROR_TYPE, NOT_IMPLEMENTED_METHOD);
}