Hello from MCP server

List Files | Just Commands | Repo | Logs

← back |
/// <reference path="../pb_data/types.d.ts" />
migrate((app) => {
  const collection = app.findCollectionByNameOrId("pbc_3107173924")

  // update collection data
  unmarshal({
    "createRule": "@request.auth.activeOrg = org",
    "deleteRule": "@request.auth.activeOrg = org",
    "listRule": "@request.auth.activeOrg = org",
    "updateRule": "@request.auth.activeOrg = org",
    "viewRule": "@request.auth.activeOrg = org"
  }, collection)

  return app.save(collection)
}, (app) => {
  const collection = app.findCollectionByNameOrId("pbc_3107173924")

  // update collection data
  unmarshal({
    "createRule": null,
    "deleteRule": null,
    "listRule": null,
    "updateRule": null,
    "viewRule": null
  }, collection)

  return app.save(collection)
})