Skip to content

Commit

Permalink
refactor into JsonSearch service
Browse files Browse the repository at this point in the history
  • Loading branch information
cnrudd committed Jan 27, 2025
1 parent a1c475b commit 7eb8658
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions admin/tabs/userData/jsonblob/JsonBlobPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export const jsonBlobPanel = hoistCmp.factory({
})
}),
jsonSearchPanel({
docSearchUrl: 'jsonBlobSearchAdmin/searchByJsonPath',
matchingNodesUrl: 'jsonBlobSearchAdmin/getMatchingNodes',
docSearchUrl: 'jsonSearch/searchBlobs',
matchingNodesUrl: 'jsonSearch/getMatchingNodes',
gridModelConfig: {
sortBy: ['owner', 'name'],
store: {
Expand Down
4 changes: 2 additions & 2 deletions admin/tabs/userData/prefs/UserPreferencePanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ export const userPreferencePanel = hoistCmp.factory({
mask: 'onLoad'
}),
jsonSearchPanel({
docSearchUrl: 'preferenceJsonSearchAdmin/searchByJsonPath',
matchingNodesUrl: 'preferenceJsonSearchAdmin/getMatchingNodes',
docSearchUrl: 'jsonSearch/searchUserPreferences',
matchingNodesUrl: 'jsonSearch/getMatchingNodes',
gridModelConfig: {
sortBy: ['name'],
groupBy: 'groupName',
Expand Down

0 comments on commit 7eb8658

Please sign in to comment.