Новые правки в компоенты

This commit is contained in:
Web-serfer 2026-04-18 18:25:10 +05:00
parent e85d1ce668
commit 6f727aae7b
23 changed files with 1483 additions and 37 deletions

View file

@ -0,0 +1,28 @@
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("pbc_533777971")
// update collection data
unmarshal({
"createRule": "@request.auth.id != \"\"",
"deleteRule": "user.id = @request.auth.id ",
"listRule": " status = \"published\" || @request.auth.id != \"\" ",
"updateRule": " user.id = @request.auth.id ",
"viewRule": " status = \"published\" || @request.auth.id != \"\" "
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("pbc_533777971")
// update collection data
unmarshal({
"createRule": null,
"deleteRule": null,
"listRule": null,
"updateRule": null,
"viewRule": null
}, collection)
return app.save(collection)
})