tpmkms_4wp 7.12.4-beta.4 → 7.12.4-beta.6
Sign up to get free protection for your applications and to get access to all the features.
- package/common/fastfood.instance.json +176 -89
- package/common/fastfood.js +2 -5
- package/common/fastfood.test.json +1911 -0
- package/package.json +2 -2
package/common/fastfood.js
CHANGED
@@ -355,12 +355,9 @@ const template = {
|
|
355
355
|
// i need to get the one for fastfood here.
|
356
356
|
const api = args.kms.fastfood.api
|
357
357
|
const needsDrink = askAbout({ args, api })
|
358
|
-
|
359
|
-
|
360
|
-
} else {
|
361
|
-
verbatim("The drink must be specified")
|
358
|
+
for (const item of needsDrink) {
|
359
|
+
api.remove(item)
|
362
360
|
}
|
363
|
-
return false
|
364
361
|
},
|
365
362
|
matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',
|
366
363
|
applyq: (args) => {
|