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

This commit is contained in:
Web-serfer 2026-04-20 20:27:04 +05:00
parent ecb720f751
commit ddc0a26635
13 changed files with 950 additions and 48 deletions

View file

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