feat: refs #7524 no apply limit #2921
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#2921
Loading…
Reference in New Issue
No description provided.
Delete Branch "7524-hotfix-addNoLimit"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
La propiedad
noLimit
debe definirse en el método al mismo nivel queaccepts
, de forma que no pueda ser alterada por el cliente. Ejemplo:@ -29,3 +29,3 @@
this.beforeRemote('**', async ctx => {
if (!this.hasFilter(ctx)) return;
if (ctx.method.noLimit || !this.hasFilter(ctx)) return;
Comprobar
ctx.method.noLimit
en la funciónhasFilter
para no repetir lógica@ -41,3 +41,3 @@
this.afterRemote('**', async ctx => {
if (!this.hasFilter(ctx)) return;
if (ctx.method.noLimit || !this.hasFilter(ctx)) return;
Comprobar
ctx.method.noLimit
en la funciónhasFilter
para no repetir lógica