Skip to content

Commit

Permalink
include list tag
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Oct 11, 2024
1 parent fa234de commit 6918c11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/api/endpoints/authFactor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function getReadAuthFactorEndpoints<
url: buildUrl(urls.authFactor.list, { search }),
method: "GET",
}),
providesTags: tagData(AUTH_FACTOR_TAG),
providesTags: tagData(AUTH_FACTOR_TAG, { includeListTag: true }),
}),
}
}
2 changes: 1 addition & 1 deletion src/api/endpoints/klass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default function getReadClassEndpoints<
url: buildUrl(urls.class.list, { search }),
method: "GET",
}),
providesTags: tagData(CLASS_TAG),
providesTags: tagData(CLASS_TAG, { includeListTag: true }),
}),
}
}
2 changes: 1 addition & 1 deletion src/api/endpoints/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function getReadUserEndpoints<
url: buildUrl(urls.user.list, { search }),
method: "GET",
}),
providesTags: tagData(USER_TAG),
providesTags: tagData(USER_TAG, { includeListTag: true }),
}),
}
}

0 comments on commit 6918c11

Please sign in to comment.