@yimingliao/cms 0.0.74 → 0.0.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server/index.js +0 -2
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -3983,13 +3983,11 @@ function createPostFindFullAction(ctx) {
|
|
|
3983
3983
|
function createPostFindListCardsAction(ctx) {
|
|
3984
3984
|
const {
|
|
3985
3985
|
repositories: { postQueryRepository },
|
|
3986
|
-
middlewares: { authMiddleware },
|
|
3987
3986
|
action: { executeAction }
|
|
3988
3987
|
} = ctx;
|
|
3989
3988
|
return async function postFindFullAction(params) {
|
|
3990
3989
|
return executeAction(
|
|
3991
3990
|
async ({ locale }) => {
|
|
3992
|
-
await authMiddleware.authenticate();
|
|
3993
3991
|
const { items, total } = await postQueryRepository.findListCards({
|
|
3994
3992
|
...params,
|
|
3995
3993
|
locale
|