This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreadnetV3/pb/pb_migrations/1763067184_updated_posts.js
2025-11-14 09:57:07 +13:00

23 lines
567 B
JavaScript

/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
const collection = app.findCollectionByNameOrId("jbzxvie5c27b6od")
// update collection data
unmarshal({
"listRule": "@request.auth.email=\"site@breadone.net\"",
"viewRule": "@request.auth.email=\"site@breadone.net\""
}, collection)
return app.save(collection)
}, (app) => {
const collection = app.findCollectionByNameOrId("jbzxvie5c27b6od")
// update collection data
unmarshal({
"listRule": null,
"viewRule": null
}, collection)
return app.save(collection)
})