diff --git a/.github/workflows/difftastic.yaml b/.github/workflows/difftastic.yaml
new file mode 100644
index 0000000..5a34681
--- /dev/null
+++ b/.github/workflows/difftastic.yaml
@@ -0,0 +1,33 @@
+on:
+ pull_request:
+ types:
+ - opened
+ - reopened
+ - synchronize
+
+jobs:
+ generate-diff:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v5
+ - name: Download difftastic
+ run: wget https://github.com/Wilfred/difftastic/releases/download/0.65.0/difft-x86_64-unknown-linux-gnu.tar.gz
+ - name: Unpack difftastic
+ run: tar -xf difft-x86_64-unknown-linux-gnu.tar.gz
+ - name: Checkout origin
+ run: |
+ git fetch origin
+ git reset origin/${{ github.base_ref }}
+ - run: |
+ git -c diff.external=$PWD/difft diff >> diff.md
+
+ sed -Ei 's/^[0-9]+ +[0-9]+/# \0/g' diff.md
+ sed -Ei 's/^\.+ +[0-9]+/+ \0/g' diff.md
+ sed -Ei 's/^[0-9]+ +\.+/- \0/g' diff.md
+ echo diff.md
+ cat diff.md
+ shell: bash
+ - uses: actions/upload-artifact@v4
+ with:
+ name: diff
+ path: diff.md
diff --git a/directus-config/collections/operations.json b/directus-config/collections/operations.json
index c6be7c5..c2405f7 100644
--- a/directus-config/collections/operations.json
+++ b/directus-config/collections/operations.json
@@ -1,4 +1,22 @@
[
+ {
+ "_syncId": "c8bb9791-0c7c-4756-8745-a299f2cb0d09",
+ "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
+ "key": "registration",
+ "name": "Registration",
+ "options": {
+ "collection": "registrations",
+ "key": [
+ "{{$trigger.key}}"
+ ],
+ "permissions": ""
+ },
+ "position_x": 19,
+ "position_y": 1,
+ "reject": null,
+ "resolve": "d037ab01-e936-4477-9895-c644060ce49c",
+ "type": "item-read"
+ },
{
"_syncId": "d037ab01-e936-4477-9895-c644060ce49c",
"flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
@@ -22,57 +40,98 @@
"type": "item-read"
},
{
- "_syncId": "d4dd601e-b032-4d76-b1d9-c894f81b64d6",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "activities",
- "name": "Activities",
+ "_syncId": "d2e8a292-88d9-49e2-bfbe-0aea650a9407",
+ "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
+ "key": "can_retrieve_deposit",
+ "name": "Can retrieve deposit",
"options": {
- "collection": "icbd_activities",
+ "code": "module.exports = async function(data) {\n return data.registration.checked_in && data.activities.every(a => a.attended);\n}"
+ },
+ "position_x": 55,
+ "position_y": 1,
+ "reject": null,
+ "resolve": "15906506-10e0-423a-8e0c-dd70436ef520",
+ "type": "exec"
+ },
+ {
+ "_syncId": "15906506-10e0-423a-8e0c-dd70436ef520",
+ "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
+ "key": "item_update_oylhg",
+ "name": "Update Data",
+ "options": {
+ "collection": "registrations",
+ "key": [
+ "{{$trigger.key}}"
+ ],
+ "payload": {
+ "can_retreive_deposit": "{{$last}}"
+ }
+ },
+ "position_x": 73,
+ "position_y": 1,
+ "reject": null,
+ "resolve": null,
+ "type": "item-update"
+ },
+ {
+ "_syncId": "9d5921b3-293c-4476-bf1e-11d926fb0570",
+ "flow": "260b7a9d-fe71-4bc6-b54b-0a7ef5c9b8ee",
+ "key": "event",
+ "name": "event",
+ "options": {
+ "collection": "events",
"query": {
"filter": {
- "id": {
- "_in": "{{$last}}"
+ "event": {
+ "_eq": "{{$trigger.id}}"
}
}
}
},
- "position_x": 21,
- "position_y": 17,
+ "position_x": 19,
+ "position_y": 1,
"reject": null,
- "resolve": "e59f4679-f6cc-4e0e-b7bf-4da7eb5e2f77",
+ "resolve": "6c4b9e21-34ad-4080-b4b9-7083e56656b5",
"type": "item-read"
},
{
- "_syncId": "5ab58f88-3576-46cd-b140-f83147d2b992",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "activities_populated",
- "name": "Run Script",
+ "_syncId": "6c4b9e21-34ad-4080-b4b9-7083e56656b5",
+ "flow": "260b7a9d-fe71-4bc6-b54b-0a7ef5c9b8ee",
+ "key": "is_full",
+ "name": "is_full",
"options": {
- "code": "module.exports = async function (data) {\n return data.activities.map((a) => {\n reg = data.activity_registrations.find((r) => r.icbd_activity === a.id);\n slot = a.timeslots.find((t) => t.start_time === reg.start);\n trans = data.translations\n .filter((t) => t.languages_code === \"en-US\")\n .find((t) => a.translations.indexOf(t.id) !== -1);\n return { ...a, translation: trans, timeslot: slot };\n }).sort((a, b) => a.timeslot.start_time.localeCompare(b.timeslot.start_time));\n};\n"
+ "filter": {
+ "event": {
+ "max_registrations": {
+ "_gte": "{{$event.registration_count}}",
+ "_null": false
+ }
+ }
+ }
},
- "position_x": 75,
- "position_y": 17,
+ "position_x": 37,
+ "position_y": 1,
"reject": null,
- "resolve": "56f961af-1a93-4e6e-8905-f572a1d425d2",
- "type": "exec"
+ "resolve": "73f408ff-9732-479c-92fc-efce8738a46f",
+ "type": "condition"
},
{
- "_syncId": "702df538-b576-4f29-8439-b3fed05c0f3d",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "activity",
- "name": "activity",
+ "_syncId": "73f408ff-9732-479c-92fc-efce8738a46f",
+ "flow": "260b7a9d-fe71-4bc6-b54b-0a7ef5c9b8ee",
+ "key": "close",
+ "name": "close",
"options": {
- "collection": "icbd_activities",
+ "collection": "events",
"key": [
- "{{activity_registration.icbd_activity}}"
+ "{{$event.id}}"
],
- "permissions": "$full"
+ "payload": {}
},
- "position_x": 37,
+ "position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": "d8ea3c6f-a344-4b0e-8145-68423792c0ad",
- "type": "item-read"
+ "resolve": null,
+ "type": "item-update"
},
{
"_syncId": "ad18cf60-d72c-46e7-96ff-d6438de43397",
@@ -89,23 +148,91 @@
"type": "exec"
},
{
- "_syncId": "e5551dae-8ba2-4711-aa47-1ffe2f9a267e",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "activity_registration",
- "name": "activity_registration",
+ "_syncId": "56f961af-1a93-4e6e-8905-f572a1d425d2",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "qrcode_url",
+ "name": "QRCode URL",
"options": {
- "collection": "icbd_activities_registrations",
+ "code": "module.exports = async function(data) {\n return `https://clic.epfl.ch/clicketing/api/qrcode?value=${data.registration.id}&size=1024`\n}"
+ },
+ "position_x": 3,
+ "position_y": 33,
+ "reject": null,
+ "resolve": "1c462359-b85a-4f1e-9e4c-8184cc1cdae0",
+ "type": "exec"
+ },
+ {
+ "_syncId": "889a4969-1f6c-43bb-b8a8-407df5626728",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "item_update_fkeir_fxbvb_prbka",
+ "name": "Update Data",
+ "options": {
+ "collection": "registrations",
"key": [
- "{{$trigger.keys[0]}}"
+ "{{registration.id}}"
],
- "permissions": "$full"
+ "payload": {
+ "confirmation_email_sent": true
+ }
+ },
+ "position_x": 3,
+ "position_y": 49,
+ "reject": null,
+ "resolve": null,
+ "type": "item-update"
+ },
+ {
+ "_syncId": "8f43479a-f524-4c52-ab0d-002ba60e5199",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "registration",
+ "name": "Registration",
+ "options": {
+ "collection": "registrations",
+ "key": [
+ "{{$trigger.key}}"
+ ]
},
"position_x": 19,
"position_y": 1,
"reject": null,
- "resolve": "702df538-b576-4f29-8439-b3fed05c0f3d",
+ "resolve": "e651358b-6c57-408c-8729-978d0fa6eba2",
+ "type": "item-read"
+ },
+ {
+ "_syncId": "d4dd601e-b032-4d76-b1d9-c894f81b64d6",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "activities",
+ "name": "Activities",
+ "options": {
+ "collection": "icbd_activities",
+ "query": {
+ "filter": {
+ "id": {
+ "_in": "{{$last}}"
+ }
+ }
+ }
+ },
+ "position_x": 21,
+ "position_y": 17,
+ "reject": null,
+ "resolve": "e59f4679-f6cc-4e0e-b7bf-4da7eb5e2f77",
"type": "item-read"
},
+ {
+ "_syncId": "1c462359-b85a-4f1e-9e4c-8184cc1cdae0",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "cv_correction",
+ "name": "CV Correction",
+ "options": {
+ "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn data.activities.some(a => a !== null && a.type === \"cv_correction\");\n}"
+ },
+ "position_x": 21,
+ "position_y": 33,
+ "reject": null,
+ "resolve": "be2e40ba-8697-402a-bbf7-0b15cbb4db61",
+ "type": "exec"
+ },
{
"_syncId": "e651358b-6c57-408c-8729-978d0fa6eba2",
"flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
@@ -128,227 +255,201 @@
"type": "item-read"
},
{
- "_syncId": "d2e8a292-88d9-49e2-bfbe-0aea650a9407",
- "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
- "key": "can_retrieve_deposit",
- "name": "Can retrieve deposit",
+ "_syncId": "e59f4679-f6cc-4e0e-b7bf-4da7eb5e2f77",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "translations_id",
+ "name": "Translations id",
"options": {
- "code": "module.exports = async function(data) {\n return data.registration.checked_in && data.activities.every(a => a.attended);\n}"
+ "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn data.activities.map(a => a.translations).flat();\n}"
},
- "position_x": 55,
- "position_y": 1,
+ "position_x": 39,
+ "position_y": 17,
"reject": null,
- "resolve": "15906506-10e0-423a-8e0c-dd70436ef520",
+ "resolve": "1411b62c-1d8d-4f32-b194-34c239d4d6d3",
"type": "exec"
},
{
- "_syncId": "b55ec039-ec45-444a-84fd-baa2397137eb",
- "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
- "key": "can_send",
- "name": "Can send",
+ "_syncId": "be2e40ba-8697-402a-bbf7-0b15cbb4db61",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "data",
+ "name": "Data",
"options": {
- "code": "module.exports = async function(data) {\n\treturn data.event.type === \"faculty_dinner\" && data.registration.payment !== null && !data.registration.confirmation_email_sent;\n}"
+ "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn data;\n}"
},
- "position_x": 55,
- "position_y": 1,
+ "position_x": 39,
+ "position_y": 33,
"reject": null,
- "resolve": "7609746a-d71f-47ef-9509-e76a1155b2a7",
+ "resolve": "571d0635-9791-4779-9bf0-43a7e0aa0589",
"type": "exec"
},
{
- "_syncId": "73f408ff-9732-479c-92fc-efce8738a46f",
- "flow": "260b7a9d-fe71-4bc6-b54b-0a7ef5c9b8ee",
- "key": "close",
- "name": "close",
+ "_syncId": "0a58b6c8-bcb0-428c-9167-4f180efb9bdf",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "event",
+ "name": "Event",
"options": {
"collection": "events",
"key": [
- "{{$event.id}}"
- ],
- "payload": {}
+ "{{registration.event}}"
+ ]
},
"position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": null,
- "type": "item-update"
+ "resolve": "911d7c91-d0b8-426b-a158-ec4fdf22a367",
+ "type": "item-read"
},
{
- "_syncId": "ee33be1e-8718-4005-be5f-42cbe42b619d",
- "flow": "6c94bf7c-3939-4eca-8b5f-e199bd9022c3",
- "key": "condition_326ml",
- "name": "Condition",
- "options": {
- "filter": {
- "event": {
- "type": {
- "_eq": "faculty_dinner"
+ "_syncId": "1411b62c-1d8d-4f32-b194-34c239d4d6d3",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "translations",
+ "name": "translations",
+ "options": {
+ "collection": "icbd_activities_translations",
+ "query": {
+ "filter": {
+ "id": {
+ "_in": "{{$last}}"
}
}
}
},
- "position_x": 37,
- "position_y": 1,
+ "position_x": 57,
+ "position_y": 17,
"reject": null,
- "resolve": "9b337a34-9cf8-4cd6-b688-2b267a04d76e",
- "type": "condition"
+ "resolve": "5ab58f88-3576-46cd-b140-f83147d2b992",
+ "type": "item-read"
},
{
- "_syncId": "d982822f-6346-48a6-bd90-3b701f83d3de",
+ "_syncId": "571d0635-9791-4779-9bf0-43a7e0aa0589",
"flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "condition_6ep4e",
- "name": "Condition",
+ "key": "cv_correction_template",
+ "name": "CV Correction Template",
"options": {
- "filter": {
- "_and": [
- {
- "is_complete": {
- "_eq": true
- }
- },
- {
- "event": {
- "type": {
- "_eq": "icbd"
- }
- }
- }
- ]
- }
+ "code": "module.exports = async function(data) {\n return data.cv_correction ? \"\\\"cv_presentation\\\"\" : null;\n}"
},
- "position_x": 91,
+ "position_x": 57,
+ "position_y": 33,
+ "reject": null,
+ "resolve": "87ee3581-9acd-4f5a-9757-8104c9b5afed",
+ "type": "exec"
+ },
+ {
+ "_syncId": "911d7c91-d0b8-426b-a158-ec4fdf22a367",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "is_complete",
+ "name": "Is complete",
+ "options": {
+ "code": "module.exports = async function(data) {\n return data.registration.payment !== null && !data.registration.confirmation_email_sent && data.activity_registrations.every(a => a.start !== null);\n}"
+ },
+ "position_x": 73,
"position_y": 1,
"reject": null,
- "resolve": "ad18cf60-d72c-46e7-96ff-d6438de43397",
- "type": "condition"
+ "resolve": "d982822f-6346-48a6-bd90-3b701f83d3de",
+ "type": "exec"
},
{
- "_syncId": "d2984908-873f-4f7e-bd44-93564a4a0271",
- "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
- "key": "condition_8vly4",
- "name": "Condition",
+ "_syncId": "5ab58f88-3576-46cd-b140-f83147d2b992",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "activities_populated",
+ "name": "Run Script",
"options": {
- "filter": {
- "registration": {
- "payment": {
- "_neq": null
- }
- }
- }
+ "code": "module.exports = async function (data) {\n return data.activities.map((a) => {\n reg = data.activity_registrations.find((r) => r.icbd_activity === a.id);\n slot = a.timeslots.find((t) => t.start_time === reg.start);\n trans = data.translations\n .filter((t) => t.languages_code === \"en-US\")\n .find((t) => a.translations.indexOf(t.id) !== -1);\n return { ...a, translation: trans, timeslot: slot };\n }).sort((a, b) => a.timeslot.start_time.localeCompare(b.timeslot.start_time));\n};\n"
},
- "position_x": 37,
- "position_y": 18,
+ "position_x": 75,
+ "position_y": 17,
"reject": null,
- "resolve": "b9bf292e-558d-4427-9295-13564000df75",
- "type": "condition"
+ "resolve": "56f961af-1a93-4e6e-8905-f572a1d425d2",
+ "type": "exec"
},
{
- "_syncId": "4ca0de06-11bb-4bd8-a121-f94c76ef5c88",
- "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
- "key": "condition_hw",
- "name": "Condition",
+ "_syncId": "87ee3581-9acd-4f5a-9757-8104c9b5afed",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "request_mbi47",
+ "name": "Webhook / Request URL",
"options": {
- "filter": {
- "event": {
- "type": {
- "_eq": "hello_world"
- }
+ "body": "{\n \"template_name\": \"icbd_confirmation\",\n \"ics_name\": {{ cv_correction_template }},\n \"email_address\": \"{{ registration.email }}\",\n \"subject\": \"ICBD registration confirmation\",\n \"parameters\": {{ data }}\n}",
+ "headers": [
+ {
+ "header": "Content-Type",
+ "value": "application/json"
}
- }
+ ],
+ "method": "POST",
+ "url": "https://clic.epfl.ch/mail-sender/send?secret=74dc0c2810fc14a65c571bc38e3d6fe63d9a41c9"
},
- "position_x": 37,
- "position_y": 1,
+ "position_x": 75,
+ "position_y": 33,
"reject": null,
- "resolve": "0a602f39-11f6-4418-a14a-e1605609b0c1",
- "type": "condition"
+ "resolve": "889a4969-1f6c-43bb-b8a8-407df5626728",
+ "type": "request"
},
{
- "_syncId": "de952a1b-5fc7-4374-9ab8-f93504830612",
- "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
- "key": "condition_nynbu",
+ "_syncId": "d982822f-6346-48a6-bd90-3b701f83d3de",
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "key": "condition_6ep4e",
"name": "Condition",
"options": {
"filter": {
"_and": [
{
- "registration": {
- "registration_email_sent": {
- "_eq": false
- }
+ "is_complete": {
+ "_eq": true
}
},
{
- "registration": {
- "registration_complete": {
- "_eq": true
+ "event": {
+ "type": {
+ "_eq": "icbd"
}
}
}
]
}
},
- "position_x": 37,
+ "position_x": 91,
"position_y": 1,
"reject": null,
- "resolve": "d9769944-bcef-4271-91b0-ba19af26ca2b",
+ "resolve": "ad18cf60-d72c-46e7-96ff-d6438de43397",
"type": "condition"
},
{
- "_syncId": "7609746a-d71f-47ef-9509-e76a1155b2a7",
- "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
- "key": "condition_vgvop",
- "name": "Condition",
+ "_syncId": "0180bcf8-0bd5-407a-becc-409d138b677f",
+ "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
+ "key": "event",
+ "name": "Read Data",
"options": {
- "filter": {
- "can_send": {
- "_eq": true
- }
- }
+ "collection": "events",
+ "emitEvents": false,
+ "key": [
+ "{{$trigger.payload.event}}"
+ ],
+ "permissions": "$trigger"
},
- "position_x": 3,
- "position_y": 17,
+ "position_x": 19,
+ "position_y": 1,
"reject": null,
- "resolve": "83f22ec4-da67-464c-ad67-1f4e1aa096f7",
- "type": "condition"
+ "resolve": "946f0eab-853f-499e-8fce-df865e7a1b75",
+ "type": "item-read"
},
{
- "_syncId": "275a999f-665a-4138-8784-672be28fef65",
- "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
- "key": "condition_vregu",
- "name": "Condition",
+ "_syncId": "2e33f74a-6b32-4653-9e88-15d1a22a8c81",
+ "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
+ "key": "payment_required",
+ "name": "Payment required",
"options": {
"filter": {
"event": {
- "type": {
- "_eq": "faculty_dinner"
+ "price": {
+ "_neq": 0
}
}
}
},
- "position_x": 21,
+ "position_x": 19,
"position_y": 17,
- "reject": null,
- "resolve": "bb197929-1d02-4ce6-962f-477bcdfa0872",
- "type": "condition"
- },
- {
- "_syncId": "a23d260f-4426-405a-8d9b-9611f378cdec",
- "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
- "key": "condition_vx4p9",
- "name": "Condition",
- "options": {
- "filter": {
- "event": {
- "type": {
- "_eq": "other"
- }
- }
- }
- },
- "position_x": 55,
- "position_y": 1,
- "reject": null,
- "resolve": "bb2ed939-f05d-4d02-bf24-7886285ce693",
+ "reject": "5c2028ca-2ccf-4345-a7d0-0706f144d2c8",
+ "resolve": "fde2ac99-6b62-4f63-8f8e-a0e7a5c952cd",
"type": "condition"
},
{
@@ -372,74 +473,85 @@
"type": "condition"
},
{
- "_syncId": "bb197929-1d02-4ce6-962f-477bcdfa0872",
- "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
- "key": "count_meals",
- "name": "Count meals",
+ "_syncId": "fde2ac99-6b62-4f63-8f8e-a0e7a5c952cd",
+ "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
+ "key": "mail_mj05j",
+ "name": "Send Email",
"options": {
- "code": "module.exports = async function(data) {\n\treturn data.event.meals.map((meal, idx) => ({...meal, count: data.registrations.filter(o => o.meal == idx).length}))\n}"
+ "data": {
+ "event": "{{event}}",
+ "qrbill_url": "https://clic.epfl.ch/clicketing/api/qrbill?uid={{$trigger.key}}",
+ "registration": "{{$trigger.payload}}"
+ },
+ "subject": "Your registration to {{event.name}}",
+ "template": "other_event_confirmation",
+ "to": [
+ "{{$trigger.payload.email}}"
+ ],
+ "type": "template"
},
- "position_x": 39,
+ "position_x": 37,
"position_y": 17,
"reject": null,
- "resolve": "985854c2-b787-4ccd-8c94-4f822daf4a91",
- "type": "exec"
+ "resolve": null,
+ "type": "mail"
},
{
- "_syncId": "0cf461e8-1943-4c6f-ab06-e936879c71cc",
- "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
- "key": "count_vjtqe",
- "name": "Count registrations",
+ "_syncId": "5c2028ca-2ccf-4345-a7d0-0706f144d2c8",
+ "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
+ "key": "mail_mj05j_ayyyh",
+ "name": "Send Email",
"options": {
- "code": "module.exports = async function(data) {\n let count = 0;\n count += data.registrations.length;\n \n for(let i = 0; i < data.registrations.length; i += 1) {\n if(data.registrations[i].plusOnes) {\n count += data.registrations[i].plusOnes;\n }\n }\n \n return {\n \"registration_count\": count,\n \"opened\": data.event.opened && !(typeof data.event.max_registrations === \"number\" && data.event.max_registrations <= count),\n };\n}"
+ "data": {
+ "event": "{{event}}",
+ "qrcode_url": "https://clic.epfl.ch/clicketing/api/qrcode?value={{registration.id}}&size=1024",
+ "registration": "{{$trigger.payload}}"
+ },
+ "subject": "Registration Confirmation for {{event.name}}",
+ "template": "other_event_ticket",
+ "to": [
+ "{{$trigger.payload.email}}"
+ ],
+ "type": "template"
},
- "position_x": 55,
- "position_y": 1,
+ "position_x": 37,
+ "position_y": 33,
"reject": null,
- "resolve": "6228ef21-6224-4391-b51d-984365c9e790",
- "type": "exec"
- },
- {
- "_syncId": "1c462359-b85a-4f1e-9e4c-8184cc1cdae0",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "cv_correction",
- "name": "CV Correction",
- "options": {
- "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn data.activities.some(a => a !== null && a.type === \"cv_correction\");\n}"
- },
- "position_x": 21,
- "position_y": 33,
- "reject": null,
- "resolve": "be2e40ba-8697-402a-bbf7-0b15cbb4db61",
- "type": "exec"
+ "resolve": null,
+ "type": "mail"
},
{
- "_syncId": "571d0635-9791-4779-9bf0-43a7e0aa0589",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "cv_correction_template",
- "name": "CV Correction Template",
+ "_syncId": "fd5f2c59-48d5-4e1a-8f2d-d7f1318ad5de",
+ "flow": "4df2cfc1-5a97-45b8-a7ca-ef4e31a4d293",
+ "key": "item_read_alpha",
+ "name": "Read Data",
"options": {
- "code": "module.exports = async function(data) {\n return data.cv_correction ? \"\\\"cv_presentation\\\"\" : null;\n}"
+ "collection": "registrations",
+ "emitEvents": false,
+ "key": "{{$trigger.body.keys}}",
+ "permissions": "$trigger"
},
- "position_x": 57,
- "position_y": 33,
+ "position_x": 19,
+ "position_y": 1,
"reject": null,
- "resolve": "87ee3581-9acd-4f5a-9757-8104c9b5afed",
- "type": "exec"
+ "resolve": "393f4762-6950-4f91-bbcb-ab5fa1b13159",
+ "type": "item-read"
},
{
- "_syncId": "be2e40ba-8697-402a-bbf7-0b15cbb4db61",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "data",
- "name": "Data",
+ "_syncId": "393f4762-6950-4f91-bbcb-ab5fa1b13159",
+ "flow": "4df2cfc1-5a97-45b8-a7ca-ef4e31a4d293",
+ "key": "trigger_dkauf",
+ "name": "Trigger Flow",
"options": {
- "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn data;\n}"
+ "flow": "7c2abbef-afe1-425f-a08c-3013e360c95d",
+ "iterationMode": "parallel",
+ "payload": "{{$last}}"
},
- "position_x": 39,
- "position_y": 33,
+ "position_x": 37,
+ "position_y": 1,
"reject": null,
- "resolve": "571d0635-9791-4779-9bf0-43a7e0aa0589",
- "type": "exec"
+ "resolve": null,
+ "type": "trigger"
},
{
"_syncId": "340bc06c-947d-46f2-82d0-a8862d4a3563",
@@ -459,113 +571,110 @@
"type": "item-read"
},
{
- "_syncId": "0a58b6c8-bcb0-428c-9167-4f180efb9bdf",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "event",
- "name": "Event",
- "options": {
- "collection": "events",
- "key": [
- "{{registration.event}}"
- ]
- },
- "position_x": 55,
- "position_y": 1,
- "reject": null,
- "resolve": "911d7c91-d0b8-426b-a158-ec4fdf22a367",
- "type": "item-read"
- },
- {
- "_syncId": "06abeb8d-adf8-497c-8ffb-1374d366fd84",
- "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
- "key": "event",
- "name": "Event",
+ "_syncId": "a07ae0a2-4b49-468d-ba22-2a248b209301",
+ "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
+ "key": "registration_key",
+ "name": "Registration key",
"options": {
- "collection": "events",
- "key": [
- "{{$trigger.payload.event}}"
- ]
+ "code": "module.exports = async function(data) {\n\treturn data[\"$trigger\"].key || data[\"$trigger\"].keys[0];\n}"
},
"position_x": 19,
"position_y": 1,
"reject": null,
- "resolve": "4ca0de06-11bb-4bd8-a121-f94c76ef5c88",
- "type": "item-read"
+ "resolve": "2936b8f7-a46f-4392-afd0-3d9974f4ad2d",
+ "type": "exec"
},
{
- "_syncId": "0180bcf8-0bd5-407a-becc-409d138b677f",
- "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
- "key": "event",
- "name": "Read Data",
+ "_syncId": "275a999f-665a-4138-8784-672be28fef65",
+ "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
+ "key": "condition_vregu",
+ "name": "Condition",
"options": {
- "collection": "events",
- "emitEvents": false,
- "key": [
- "{{$trigger.payload.event}}"
- ],
- "permissions": "$trigger"
+ "filter": {
+ "event": {
+ "type": {
+ "_eq": "faculty_dinner"
+ }
+ }
+ }
},
- "position_x": 19,
- "position_y": 1,
+ "position_x": 21,
+ "position_y": 17,
"reject": null,
- "resolve": "946f0eab-853f-499e-8fce-df865e7a1b75",
- "type": "item-read"
+ "resolve": "bb197929-1d02-4ce6-962f-477bcdfa0872",
+ "type": "condition"
},
{
- "_syncId": "243a2be3-5cc0-431a-a3bd-290a25d2b46b",
- "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
- "key": "event",
- "name": "Event",
+ "_syncId": "2936b8f7-a46f-4392-afd0-3d9974f4ad2d",
+ "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
+ "key": "registration",
+ "name": "Registration",
"options": {
- "collection": "events",
+ "collection": "registrations",
"key": [
- "{{registration.event}}"
- ]
+ "{{registration_key}}"
+ ],
+ "query": null
},
"position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": "b55ec039-ec45-444a-84fd-baa2397137eb",
+ "resolve": "33ad2b75-22bb-4cd4-9bcf-7d4885fb4955",
"type": "item-read"
},
{
- "_syncId": "09e288c7-ba9e-43eb-b02d-d3ad03000505",
- "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
- "key": "event",
- "name": "Fetch event",
+ "_syncId": "bb197929-1d02-4ce6-962f-477bcdfa0872",
+ "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
+ "key": "count_meals",
+ "name": "Count meals",
"options": {
- "collection": "events",
- "key": [
- "{{$trigger.event}}"
- ]
+ "code": "module.exports = async function(data) {\n\treturn data.event.meals.map((meal, idx) => ({...meal, count: data.registrations.filter(o => o.meal == idx).length}))\n}"
},
- "position_x": 37,
- "position_y": 1,
+ "position_x": 39,
+ "position_y": 17,
"reject": null,
- "resolve": "0cf461e8-1943-4c6f-ab06-e936879c71cc",
- "type": "item-read"
+ "resolve": "985854c2-b787-4ccd-8c94-4f822daf4a91",
+ "type": "exec"
},
{
- "_syncId": "9d5921b3-293c-4476-bf1e-11d926fb0570",
- "flow": "260b7a9d-fe71-4bc6-b54b-0a7ef5c9b8ee",
- "key": "event",
- "name": "event",
+ "_syncId": "33ad2b75-22bb-4cd4-9bcf-7d4885fb4955",
+ "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
+ "key": "registrations",
+ "name": "Registrations",
"options": {
- "collection": "events",
+ "collection": "registrations",
"query": {
"filter": {
"event": {
- "_eq": "{{$trigger.id}}"
+ "_eq": "{{registration.event}}"
}
}
}
},
- "position_x": 19,
+ "position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": "6c4b9e21-34ad-4080-b4b9-7083e56656b5",
+ "resolve": "340bc06c-947d-46f2-82d0-a8862d4a3563",
"type": "item-read"
},
+ {
+ "_syncId": "985854c2-b787-4ccd-8c94-4f822daf4a91",
+ "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
+ "key": "item_update_qsajm_sbmyv_pnyif",
+ "name": "Update Data",
+ "options": {
+ "collection": "events",
+ "key": [],
+ "payload": {
+ "meals": "{{count_meals}}"
+ }
+ },
+ "position_x": 57,
+ "position_y": 17,
+ "reject": null,
+ "resolve": null,
+ "type": "item-update"
+ },
{
"_syncId": "ed83b9a5-3cef-42c2-bb3d-63cf19062047",
"flow": "6c94bf7c-3939-4eca-8b5f-e199bd9022c3",
@@ -584,90 +693,136 @@
"type": "item-read"
},
{
- "_syncId": "68dd5e2e-70d2-4499-8091-0aa471f2cd99",
- "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
- "key": "event",
- "name": "Read Data",
+ "_syncId": "ee33be1e-8718-4005-be5f-42cbe42b619d",
+ "flow": "6c94bf7c-3939-4eca-8b5f-e199bd9022c3",
+ "key": "condition_326ml",
+ "name": "Condition",
"options": {
- "collection": "events",
- "emitEvents": false,
- "key": [
- "{{registration.event}}"
- ],
- "permissions": "$trigger"
+ "filter": {
+ "event": {
+ "type": {
+ "_eq": "faculty_dinner"
+ }
+ }
+ }
},
"position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": "a23d260f-4426-405a-8d9b-9611f378cdec",
- "type": "item-read"
+ "resolve": "9b337a34-9cf8-4cd6-b688-2b267a04d76e",
+ "type": "condition"
},
{
- "_syncId": "d6bcbc4b-631e-4804-a01f-e15ffb179f10",
- "flow": "93c8399e-f2b9-4808-9904-e01dac447ef8",
- "key": "fetch_registration",
- "name": "Fetch registration",
+ "_syncId": "9b337a34-9cf8-4cd6-b688-2b267a04d76e",
+ "flow": "6c94bf7c-3939-4eca-8b5f-e199bd9022c3",
+ "key": "mail_ofzwn",
+ "name": "Send Email",
"options": {
- "collection": "registrations",
- "key": [
- "{{$trigger.keys[0]}}"
+ "data": {
+ "qrbill_url": "https://clic.epfl.ch/clicketing/api/qrbill?uid={{$trigger.key}}",
+ "registration": "{{$trigger.payload}}"
+ },
+ "subject": "Your registration to IC Faculty Dinner",
+ "template": "faculty_dinner_preregistration",
+ "to": [
+ "{{$trigger.payload.email}}"
],
- "query": null
+ "type": "template"
},
- "position_x": 37,
+ "position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": "0d327e03-7edc-4210-b806-8dbdb546a366",
- "type": "item-read"
+ "resolve": null,
+ "type": "mail"
},
{
- "_syncId": "911d7c91-d0b8-426b-a158-ec4fdf22a367",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "is_complete",
- "name": "Is complete",
+ "_syncId": "94fb122e-881f-49aa-96b9-025a8455cfd2",
+ "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
+ "key": "registrations",
+ "name": "Fetch registrations",
"options": {
- "code": "module.exports = async function(data) {\n return data.registration.payment !== null && !data.registration.confirmation_email_sent && data.activity_registrations.every(a => a.start !== null);\n}"
- },
- "position_x": 73,
+ "collection": "registrations",
+ "query": {
+ "filter": {
+ "event": {
+ "_eq": "{{$trigger.event}}"
+ }
+ }
+ }
+ },
+ "position_x": 19,
"position_y": 1,
"reject": null,
- "resolve": "d982822f-6346-48a6-bd90-3b701f83d3de",
- "type": "exec"
+ "resolve": "09e288c7-ba9e-43eb-b02d-d3ad03000505",
+ "type": "item-read"
},
{
- "_syncId": "bf95ba44-07c8-41f8-8c5e-ef25350e0375",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "is_full",
- "name": "Run Script",
+ "_syncId": "09e288c7-ba9e-43eb-b02d-d3ad03000505",
+ "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
+ "key": "event",
+ "name": "Fetch event",
"options": {
- "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn typeof data.timeslot.max_attendees === \"number\" && data.timeslot.max_attendees <= data.matching_registrations.length;\n}"
+ "collection": "events",
+ "key": [
+ "{{$trigger.event}}"
+ ]
},
- "position_x": 91,
+ "position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": "0ffc9ac6-005f-4131-a0af-ea2190763307",
+ "resolve": "0cf461e8-1943-4c6f-ab06-e936879c71cc",
+ "type": "item-read"
+ },
+ {
+ "_syncId": "0cf461e8-1943-4c6f-ab06-e936879c71cc",
+ "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
+ "key": "count_vjtqe",
+ "name": "Count registrations",
+ "options": {
+ "code": "module.exports = async function(data) {\n let count = 0;\n count += data.registrations.length;\n \n for(let i = 0; i < data.registrations.length; i += 1) {\n if(data.registrations[i].plusOnes) {\n count += data.registrations[i].plusOnes;\n }\n }\n \n return {\n \"registration_count\": count,\n \"opened\": data.event.opened && !(typeof data.event.max_registrations === \"number\" && data.event.max_registrations <= count),\n };\n}"
+ },
+ "position_x": 55,
+ "position_y": 1,
+ "reject": null,
+ "resolve": "6228ef21-6224-4391-b51d-984365c9e790",
"type": "exec"
},
{
- "_syncId": "6c4b9e21-34ad-4080-b4b9-7083e56656b5",
- "flow": "260b7a9d-fe71-4bc6-b54b-0a7ef5c9b8ee",
- "key": "is_full",
- "name": "is_full",
+ "_syncId": "6228ef21-6224-4391-b51d-984365c9e790",
+ "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
+ "key": "item_update_rz4iw_lnanl",
+ "name": "Update Data",
"options": {
- "filter": {
- "event": {
- "max_registrations": {
- "_gte": "{{$event.registration_count}}",
- "_null": false
- }
- }
- }
+ "collection": "events",
+ "key": [
+ "{{$trigger.event}}"
+ ],
+ "payload": "{{$last}}",
+ "permissions": "$full",
+ "query": null
},
- "position_x": 37,
+ "position_x": 73,
"position_y": 1,
"reject": null,
- "resolve": "73f408ff-9732-479c-92fc-efce8738a46f",
- "type": "condition"
+ "resolve": null,
+ "type": "item-update"
+ },
+ {
+ "_syncId": "e43c3bf4-fc72-4acd-9d03-3c28baa8f842",
+ "flow": "7c2abbef-afe1-425f-a08c-3013e360c95d",
+ "key": "mail_1ur86",
+ "name": "Send Email",
+ "options": {
+ "body": "\n\n
\n \n \n \n \n \n \n | \n
\n \n \n \n\n \n \n | \n Hi {{$trigger.first_name}}, \n A friendly reminder that Hello World, our first event of the semester, is tomorrow (16th September)! \n\n Come at 6pm in the BC Hall with your team \"{{$trigger.team}}\" and your QR codes… and don’t forget to have fun! \n \n | \n \n \n | \n \n See you there, \n CLIC \n \n | \n \n \n | \n \n Follow us on our socials     \n \n | \n \n \n \n | \n
\n \n \n \n \n \n | \n
\n
\n\n\n",
+ "subject": "CLIC Reminder: Hello World",
+ "to": "{{$trigger.email}}",
+ "type": "wysiwyg"
+ },
+ "position_x": 19,
+ "position_y": 1,
+ "reject": null,
+ "resolve": null,
+ "type": "mail"
},
{
"_syncId": "bfbc41e0-1914-426a-aa9e-d912aaf54974",
@@ -690,220 +845,150 @@
"type": "condition"
},
{
- "_syncId": "fd5f2c59-48d5-4e1a-8f2d-d7f1318ad5de",
- "flow": "4df2cfc1-5a97-45b8-a7ca-ef4e31a4d293",
- "key": "item_read_alpha",
- "name": "Read Data",
+ "_syncId": "d6bcbc4b-631e-4804-a01f-e15ffb179f10",
+ "flow": "93c8399e-f2b9-4808-9904-e01dac447ef8",
+ "key": "fetch_registration",
+ "name": "Fetch registration",
"options": {
"collection": "registrations",
- "emitEvents": false,
- "key": "{{$trigger.body.keys}}",
- "permissions": "$trigger"
+ "key": [
+ "{{$trigger.keys[0]}}"
+ ],
+ "query": null
},
- "position_x": 19,
+ "position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": "393f4762-6950-4f91-bbcb-ab5fa1b13159",
+ "resolve": "0d327e03-7edc-4210-b806-8dbdb546a366",
"type": "item-read"
},
{
- "_syncId": "4a69daea-858b-478e-a879-f99ada596651",
- "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
- "key": "item_read_florn",
- "name": "Read Data",
+ "_syncId": "0181fca8-1365-4407-b185-72a2af57791d",
+ "flow": "93c8399e-f2b9-4808-9904-e01dac447ef8",
+ "key": "trigger_o9drl_bjfdv",
+ "name": "Trigger Flow",
"options": {
- "collection": "icbd_activities_registrations",
- "key": [
- "{{$trigger.keys[0]}}"
- ]
+ "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
+ "payload": "{{$trigger.payload}}"
},
- "position_x": 19,
- "position_y": 1,
+ "position_x": 37,
+ "position_y": 16,
"reject": null,
- "resolve": "7b15317e-2bb4-400a-9ffb-5a56f876425d",
- "type": "item-read"
+ "resolve": null,
+ "type": "trigger"
},
{
- "_syncId": "486a60ce-ad9d-4b9c-94bd-a576600685b4",
- "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
- "key": "item_update_ez8bv",
- "name": "Update Data",
+ "_syncId": "0d327e03-7edc-4210-b806-8dbdb546a366",
+ "flow": "93c8399e-f2b9-4808-9904-e01dac447ef8",
+ "key": "trigger_o9drl",
+ "name": "Trigger Flow",
"options": {
- "collection": "registrations",
- "key": [
- "{{registration.id}}"
- ],
- "payload": {
- "registration_email_sent": true
- }
+ "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
+ "payload": "{{$last}}"
},
- "position_x": 73,
+ "position_x": 55,
"position_y": 1,
"reject": null,
"resolve": null,
- "type": "item-update"
+ "type": "trigger"
},
{
- "_syncId": "889a4969-1f6c-43bb-b8a8-407df5626728",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "item_update_fkeir_fxbvb_prbka",
- "name": "Update Data",
+ "_syncId": "4f7ad4ef-5995-41f5-ac25-cc5b30f75e52",
+ "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
+ "key": "registration",
+ "name": "Registration",
"options": {
"collection": "registrations",
+ "emitEvents": false,
"key": [
- "{{registration.id}}"
+ "{{$trigger.keys[0]}}"
],
- "payload": {
- "confirmation_email_sent": true
- }
+ "permissions": "$trigger"
},
- "position_x": 3,
- "position_y": 49,
+ "position_x": 19,
+ "position_y": 1,
"reject": null,
- "resolve": null,
- "type": "item-update"
+ "resolve": "68dd5e2e-70d2-4499-8091-0aa471f2cd99",
+ "type": "item-read"
},
{
- "_syncId": "15906506-10e0-423a-8e0c-dd70436ef520",
- "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
- "key": "item_update_oylhg",
- "name": "Update Data",
+ "_syncId": "bb2ed939-f05d-4d02-bf24-7886285ce693",
+ "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
+ "key": "payment_required",
+ "name": "Payment required",
"options": {
- "collection": "registrations",
- "key": [
- "{{$trigger.key}}"
- ],
- "payload": {
- "can_retreive_deposit": "{{$last}}"
+ "filter": {
+ "event": {
+ "price": {
+ "_neq": 0
+ }
+ }
}
},
- "position_x": 73,
- "position_y": 1,
+ "position_x": 19,
+ "position_y": 18,
"reject": null,
- "resolve": null,
- "type": "item-update"
+ "resolve": "d2984908-873f-4f7e-bd44-93564a4a0271",
+ "type": "condition"
},
{
- "_syncId": "2877c761-ca70-4ed5-b6f9-84c3a1cf4695",
- "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
- "key": "item_update_oz10r",
- "name": "Update Data",
+ "_syncId": "68dd5e2e-70d2-4499-8091-0aa471f2cd99",
+ "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
+ "key": "event",
+ "name": "Read Data",
"options": {
- "collection": "registrations",
+ "collection": "events",
+ "emitEvents": false,
"key": [
- "{{registration.id}}"
+ "{{registration.event}}"
],
- "payload": {
- "confirmation_email_sent": true
- }
+ "permissions": "$trigger"
},
- "position_x": 39,
- "position_y": 17,
+ "position_x": 37,
+ "position_y": 1,
"reject": null,
- "resolve": null,
- "type": "item-update"
+ "resolve": "a23d260f-4426-405a-8d9b-9611f378cdec",
+ "type": "item-read"
},
{
- "_syncId": "985854c2-b787-4ccd-8c94-4f822daf4a91",
- "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
- "key": "item_update_qsajm_sbmyv_pnyif",
- "name": "Update Data",
+ "_syncId": "d2984908-873f-4f7e-bd44-93564a4a0271",
+ "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
+ "key": "condition_8vly4",
+ "name": "Condition",
"options": {
- "collection": "events",
- "key": [],
- "payload": {
- "meals": "{{count_meals}}"
+ "filter": {
+ "registration": {
+ "payment": {
+ "_neq": null
+ }
+ }
}
},
- "position_x": 57,
- "position_y": 17,
+ "position_x": 37,
+ "position_y": 18,
"reject": null,
- "resolve": null,
- "type": "item-update"
+ "resolve": "b9bf292e-558d-4427-9295-13564000df75",
+ "type": "condition"
},
{
- "_syncId": "6228ef21-6224-4391-b51d-984365c9e790",
- "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
- "key": "item_update_rz4iw_lnanl",
- "name": "Update Data",
- "options": {
- "collection": "events",
- "key": [
- "{{$trigger.event}}"
- ],
- "payload": "{{$last}}",
- "permissions": "$full",
- "query": null
- },
- "position_x": 73,
- "position_y": 1,
- "reject": null,
- "resolve": null,
- "type": "item-update"
- },
- {
- "_syncId": "e4ff4105-d960-4053-80b8-39d8b24ed3fe",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "item_update_wrcj6",
- "name": "Update Data",
- "options": {
- "collection": "icbd_activities",
- "key": [
- "{{activity.id}}"
- ],
- "payload": "{{new_activity}}",
- "permissions": "$full"
- },
- "position_x": 127,
- "position_y": 1,
- "reject": null,
- "resolve": null,
- "type": "item-update"
- },
- {
- "_syncId": "7b15317e-2bb4-400a-9ffb-5a56f876425d",
- "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
- "key": "key",
- "name": "Run Script",
- "options": {
- "code": "module.exports = async function(data) {\n\treturn data[\"$last\"].registration;\n}"
- },
- "position_x": 37,
- "position_y": 1,
- "reject": null,
- "resolve": "8fb5d4df-5776-4bef-9098-abf6a4b4add2",
- "type": "exec"
- },
- {
- "_syncId": "b00d1b9f-14b4-421a-a442-61d4b65fafb3",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "log_a9wh0",
- "name": "Log to Console",
- "options": {
- "message": "{{$last}}"
- },
- "position_x": 91,
- "position_y": 1,
- "reject": null,
- "resolve": null,
- "type": "log"
- },
- {
- "_syncId": "e43c3bf4-fc72-4acd-9d03-3c28baa8f842",
- "flow": "7c2abbef-afe1-425f-a08c-3013e360c95d",
- "key": "mail_1ur86",
- "name": "Send Email",
+ "_syncId": "a23d260f-4426-405a-8d9b-9611f378cdec",
+ "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
+ "key": "condition_vx4p9",
+ "name": "Condition",
"options": {
- "body": "\n\n\n \n \n \n \n \n \n | \n
\n \n \n \n\n \n \n | \n Hi {{$trigger.first_name}}, \n A friendly reminder that Hello World, our first event of the semester, is tomorrow (16th September)! \n\n Come at 6pm in the BC Hall with your team \"{{$trigger.team}}\" and your QR codes… and don’t forget to have fun! \n \n | \n \n \n | \n \n See you there, \n CLIC \n \n | \n \n \n | \n \n Follow us on our socials     \n \n | \n \n \n \n | \n
\n \n \n \n \n \n | \n
\n
\n\n\n",
- "subject": "CLIC Reminder: Hello World",
- "to": "{{$trigger.email}}",
- "type": "wysiwyg"
+ "filter": {
+ "event": {
+ "type": {
+ "_eq": "other"
+ }
+ }
+ }
},
- "position_x": 19,
+ "position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": null,
- "type": "mail"
+ "resolve": "bb2ed939-f05d-4d02-bf24-7886285ce693",
+ "type": "condition"
},
{
"_syncId": "b9bf292e-558d-4427-9295-13564000df75",
@@ -930,257 +1015,202 @@
"type": "mail"
},
{
- "_syncId": "83f22ec4-da67-464c-ad67-1f4e1aa096f7",
- "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
- "key": "mail_hlcl6",
- "name": "Send Email",
+ "_syncId": "06abeb8d-adf8-497c-8ffb-1374d366fd84",
+ "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
+ "key": "event",
+ "name": "Event",
"options": {
- "data": {
- "event": "{{event}}",
- "qrcode_url": "https://clic.epfl.ch/clicketing/api/qrcode?value={{registration.id}}&size=1024",
- "registration": "{{registration}}"
- },
- "subject": "Confirmation for IC Faculty Dinner",
- "template": "faculty_dinner_confirmation",
- "to": [
- "{{registration.email}}"
- ],
- "type": "template"
+ "collection": "events",
+ "key": [
+ "{{$trigger.payload.event}}"
+ ]
},
- "position_x": 21,
- "position_y": 17,
+ "position_x": 19,
+ "position_y": 1,
"reject": null,
- "resolve": "2877c761-ca70-4ed5-b6f9-84c3a1cf4695",
- "type": "mail"
+ "resolve": "4ca0de06-11bb-4bd8-a121-f94c76ef5c88",
+ "type": "item-read"
},
{
- "_syncId": "fde2ac99-6b62-4f63-8f8e-a0e7a5c952cd",
- "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
- "key": "mail_mj05j",
- "name": "Send Email",
+ "_syncId": "4ca0de06-11bb-4bd8-a121-f94c76ef5c88",
+ "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
+ "key": "condition_hw",
+ "name": "Condition",
"options": {
- "data": {
- "event": "{{event}}",
- "qrbill_url": "https://clic.epfl.ch/clicketing/api/qrbill?uid={{$trigger.key}}",
- "registration": "{{$trigger.payload}}"
- },
- "subject": "Your registration to {{event.name}}",
- "template": "other_event_confirmation",
- "to": [
- "{{$trigger.payload.email}}"
- ],
- "type": "template"
+ "filter": {
+ "event": {
+ "type": {
+ "_eq": "hello_world"
+ }
+ }
+ }
},
"position_x": 37,
- "position_y": 17,
+ "position_y": 1,
"reject": null,
- "resolve": null,
- "type": "mail"
+ "resolve": "0a602f39-11f6-4418-a14a-e1605609b0c1",
+ "type": "condition"
},
{
- "_syncId": "5c2028ca-2ccf-4345-a7d0-0706f144d2c8",
- "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
- "key": "mail_mj05j_ayyyh",
+ "_syncId": "0a602f39-11f6-4418-a14a-e1605609b0c1",
+ "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
+ "key": "send_email_kxure",
"name": "Send Email",
"options": {
"data": {
"event": "{{event}}",
- "qrcode_url": "https://clic.epfl.ch/clicketing/api/qrcode?value={{registration.id}}&size=1024",
+ "qrcode_url": "https://clic.epfl.ch/clicketing/api/qrcode?value={{$trigger.key}}&size=1024",
"registration": "{{$trigger.payload}}"
},
- "subject": "Registration Confirmation for {{event.name}}",
- "template": "other_event_ticket",
+ "subject": "Registration Confirmation for Hello World",
+ "template": "hello_world_confirmation",
"to": [
"{{$trigger.payload.email}}"
],
"type": "template"
},
- "position_x": 37,
- "position_y": 33,
- "reject": null,
- "resolve": null,
- "type": "mail"
- },
- {
- "_syncId": "d9769944-bcef-4271-91b0-ba19af26ca2b",
- "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
- "key": "mail_ofzwn",
- "name": "Send Email",
- "options": {
- "data": {
- "registration": "{{registration}}"
- },
- "subject": "Your registration to ICBD",
- "template": "icbd_registration_email",
- "to": [
- "{{registration.email}}"
- ],
- "type": "template"
- },
"position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": "486a60ce-ad9d-4b9c-94bd-a576600685b4",
+ "resolve": "2a6b54fd-c404-4b7d-a6d6-d28ac88ac601",
"type": "mail"
},
{
- "_syncId": "9b337a34-9cf8-4cd6-b688-2b267a04d76e",
- "flow": "6c94bf7c-3939-4eca-8b5f-e199bd9022c3",
- "key": "mail_ofzwn",
- "name": "Send Email",
+ "_syncId": "2a6b54fd-c404-4b7d-a6d6-d28ac88ac601",
+ "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
+ "key": "update_data_wwpfl",
+ "name": "Update Data",
"options": {
- "data": {
- "qrbill_url": "https://clic.epfl.ch/clicketing/api/qrbill?uid={{$trigger.key}}",
- "registration": "{{$trigger.payload}}"
- },
- "subject": "Your registration to IC Faculty Dinner",
- "template": "faculty_dinner_preregistration",
- "to": [
- "{{$trigger.payload.email}}"
+ "collection": "registrations",
+ "key": [
+ "{{$trigger.key}}"
],
- "type": "template"
+ "payload": {
+ "confirmation_email_sent": true
+ }
},
- "position_x": 55,
+ "position_x": 73,
"position_y": 1,
"reject": null,
"resolve": null,
- "type": "mail"
+ "type": "item-update"
},
{
- "_syncId": "1756a6a2-dc5c-4f38-b21b-0f7c36f93671",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "matching_registrations",
- "name": "matching_registrations",
+ "_syncId": "4a69daea-858b-478e-a879-f99ada596651",
+ "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
+ "key": "item_read_florn",
+ "name": "Read Data",
"options": {
"collection": "icbd_activities_registrations",
- "permissions": "$full",
- "query": {
- "filter": {
- "_and": [
- {
- "icbd_activity": {
- "_eq": "{{activity.id}}"
- }
- },
- {
- "start": {
- "_eq": "{{timeslot.start_time}}"
- }
- }
- ]
- }
- }
+ "key": [
+ "{{$trigger.keys[0]}}"
+ ]
},
- "position_x": 73,
+ "position_x": 19,
"position_y": 1,
"reject": null,
- "resolve": "bf95ba44-07c8-41f8-8c5e-ef25350e0375",
+ "resolve": "7b15317e-2bb4-400a-9ffb-5a56f876425d",
"type": "item-read"
},
{
- "_syncId": "0ffc9ac6-005f-4131-a0af-ea2190763307",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "new_activity",
- "name": "new_activity",
+ "_syncId": "7b15317e-2bb4-400a-9ffb-5a56f876425d",
+ "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
+ "key": "key",
+ "name": "Run Script",
"options": {
- "code": "module.exports = async function(data) {\n copy = JSON.parse(JSON.stringify(data.activity));\n \n copy.timeslots.find(t => t.start_time == data.activity_registration.start).full = data.is_full;\n \n\treturn copy;\n}"
+ "code": "module.exports = async function(data) {\n\treturn data[\"$last\"].registration;\n}"
},
- "position_x": 109,
+ "position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": "e4ff4105-d960-4053-80b8-39d8b24ed3fe",
+ "resolve": "8fb5d4df-5776-4bef-9098-abf6a4b4add2",
"type": "exec"
},
{
- "_syncId": "bb2ed939-f05d-4d02-bf24-7886285ce693",
- "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
- "key": "payment_required",
- "name": "Payment required",
+ "_syncId": "8fb5d4df-5776-4bef-9098-abf6a4b4add2",
+ "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
+ "key": "trigger_rmf4o",
+ "name": "Trigger Flow",
"options": {
- "filter": {
- "event": {
- "price": {
- "_neq": 0
- }
- }
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "payload": {
+ "key": "{{key}}"
}
},
- "position_x": 19,
- "position_y": 18,
+ "position_x": 55,
+ "position_y": 1,
"reject": null,
- "resolve": "d2984908-873f-4f7e-bd44-93564a4a0271",
- "type": "condition"
+ "resolve": "3c276f44-136c-40dc-8278-116319d7ce75",
+ "type": "trigger"
},
{
- "_syncId": "2e33f74a-6b32-4653-9e88-15d1a22a8c81",
- "flow": "48c5e220-ea71-485a-b86f-dbe5b7bebd18",
- "key": "payment_required",
- "name": "Payment required",
+ "_syncId": "3c276f44-136c-40dc-8278-116319d7ce75",
+ "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
+ "key": "trigger_ehyqh",
+ "name": "Trigger Flow",
"options": {
- "filter": {
- "event": {
- "price": {
- "_neq": 0
- }
- }
+ "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
+ "payload": {
+ "key": "{{key}}"
}
},
- "position_x": 19,
- "position_y": 17,
- "reject": "5c2028ca-2ccf-4345-a7d0-0706f144d2c8",
- "resolve": "fde2ac99-6b62-4f63-8f8e-a0e7a5c952cd",
- "type": "condition"
+ "position_x": 73,
+ "position_y": 1,
+ "reject": null,
+ "resolve": null,
+ "type": "trigger"
},
{
- "_syncId": "56f961af-1a93-4e6e-8905-f572a1d425d2",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "qrcode_url",
- "name": "QRCode URL",
+ "_syncId": "fef5f568-8096-4f6e-b22a-466609fab749",
+ "flow": "ad0d9b41-7409-414d-aa77-1baf45565dbd",
+ "key": "trigger_js0o2",
+ "name": "Trigger Flow",
"options": {
- "code": "module.exports = async function(data) {\n return `https://clic.epfl.ch/clicketing/api/qrcode?value=${data.registration.id}&size=1024`\n}"
+ "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
+ "payload": {
+ "key": "{{$trigger.keys[0]}}"
+ }
},
- "position_x": 3,
- "position_y": 33,
+ "position_x": 19,
+ "position_y": 1,
"reject": null,
- "resolve": "1c462359-b85a-4f1e-9e4c-8184cc1cdae0",
- "type": "exec"
+ "resolve": "b582d00d-1ff3-4423-a77d-162b03b3a743",
+ "type": "trigger"
},
{
- "_syncId": "c8bb9791-0c7c-4756-8745-a299f2cb0d09",
- "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
- "key": "registration",
- "name": "Registration",
+ "_syncId": "b582d00d-1ff3-4423-a77d-162b03b3a743",
+ "flow": "ad0d9b41-7409-414d-aa77-1baf45565dbd",
+ "key": "trigger_90arx",
+ "name": "Trigger Flow",
"options": {
- "collection": "registrations",
- "key": [
- "{{$trigger.key}}"
- ],
- "permissions": ""
+ "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
+ "payload": {
+ "key": "{{$trigger.keys[0]}}"
+ }
},
- "position_x": 19,
+ "position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": "d037ab01-e936-4477-9895-c644060ce49c",
- "type": "item-read"
+ "resolve": null,
+ "type": "trigger"
},
{
- "_syncId": "4f7ad4ef-5995-41f5-ac25-cc5b30f75e52",
- "flow": "974bb3ab-5db4-48b3-88c8-16b80b94f5cc",
- "key": "registration",
- "name": "Registration",
+ "_syncId": "7609746a-d71f-47ef-9509-e76a1155b2a7",
+ "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
+ "key": "condition_vgvop",
+ "name": "Condition",
"options": {
- "collection": "registrations",
- "emitEvents": false,
- "key": [
- "{{$trigger.keys[0]}}"
- ],
- "permissions": "$trigger"
+ "filter": {
+ "can_send": {
+ "_eq": true
+ }
+ }
},
- "position_x": 19,
- "position_y": 1,
+ "position_x": 3,
+ "position_y": 17,
"reject": null,
- "resolve": "68dd5e2e-70d2-4499-8091-0aa471f2cd99",
- "type": "item-read"
+ "resolve": "83f22ec4-da67-464c-ad67-1f4e1aa096f7",
+ "type": "condition"
},
{
"_syncId": "49a0bb71-2b59-4c53-a27f-8e061ca4eeca",
@@ -1200,337 +1230,307 @@
"type": "item-read"
},
{
- "_syncId": "2936b8f7-a46f-4392-afd0-3d9974f4ad2d",
- "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
- "key": "registration",
- "name": "Registration",
+ "_syncId": "83f22ec4-da67-464c-ad67-1f4e1aa096f7",
+ "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
+ "key": "mail_hlcl6",
+ "name": "Send Email",
"options": {
- "collection": "registrations",
- "key": [
- "{{registration_key}}"
+ "data": {
+ "event": "{{event}}",
+ "qrcode_url": "https://clic.epfl.ch/clicketing/api/qrcode?value={{registration.id}}&size=1024",
+ "registration": "{{registration}}"
+ },
+ "subject": "Confirmation for IC Faculty Dinner",
+ "template": "faculty_dinner_confirmation",
+ "to": [
+ "{{registration.email}}"
],
- "query": null
+ "type": "template"
},
- "position_x": 37,
- "position_y": 1,
+ "position_x": 21,
+ "position_y": 17,
"reject": null,
- "resolve": "33ad2b75-22bb-4cd4-9bcf-7d4885fb4955",
- "type": "item-read"
+ "resolve": "2877c761-ca70-4ed5-b6f9-84c3a1cf4695",
+ "type": "mail"
},
{
- "_syncId": "30c91a96-c497-455a-9b88-07d3288a01b0",
- "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
- "key": "registration",
- "name": "registration",
+ "_syncId": "243a2be3-5cc0-431a-a3bd-290a25d2b46b",
+ "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
+ "key": "event",
+ "name": "Event",
"options": {
- "collection": "registrations",
+ "collection": "events",
"key": [
- "{{$trigger.keys[0]}}"
+ "{{registration.event}}"
]
},
- "position_x": 19,
+ "position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": "de952a1b-5fc7-4374-9ab8-f93504830612",
+ "resolve": "b55ec039-ec45-444a-84fd-baa2397137eb",
"type": "item-read"
},
{
- "_syncId": "8f43479a-f524-4c52-ab0d-002ba60e5199",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "registration",
- "name": "Registration",
+ "_syncId": "2877c761-ca70-4ed5-b6f9-84c3a1cf4695",
+ "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
+ "key": "item_update_oz10r",
+ "name": "Update Data",
"options": {
"collection": "registrations",
"key": [
- "{{$trigger.key}}"
- ]
+ "{{registration.id}}"
+ ],
+ "payload": {
+ "confirmation_email_sent": true
+ }
},
- "position_x": 19,
- "position_y": 1,
+ "position_x": 39,
+ "position_y": 17,
"reject": null,
- "resolve": "e651358b-6c57-408c-8729-978d0fa6eba2",
- "type": "item-read"
+ "resolve": null,
+ "type": "item-update"
},
{
- "_syncId": "a07ae0a2-4b49-468d-ba22-2a248b209301",
- "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
- "key": "registration_key",
- "name": "Registration key",
+ "_syncId": "b55ec039-ec45-444a-84fd-baa2397137eb",
+ "flow": "bd181b20-151d-451e-9e1d-8b01bb197fab",
+ "key": "can_send",
+ "name": "Can send",
"options": {
- "code": "module.exports = async function(data) {\n\treturn data[\"$trigger\"].key || data[\"$trigger\"].keys[0];\n}"
+ "code": "module.exports = async function(data) {\n\treturn data.event.type === \"faculty_dinner\" && data.registration.payment !== null && !data.registration.confirmation_email_sent;\n}"
},
- "position_x": 19,
+ "position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": "2936b8f7-a46f-4392-afd0-3d9974f4ad2d",
+ "resolve": "7609746a-d71f-47ef-9509-e76a1155b2a7",
"type": "exec"
},
{
- "_syncId": "94fb122e-881f-49aa-96b9-025a8455cfd2",
- "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
- "key": "registrations",
- "name": "Fetch registrations",
+ "_syncId": "30c91a96-c497-455a-9b88-07d3288a01b0",
+ "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
+ "key": "registration",
+ "name": "registration",
"options": {
"collection": "registrations",
- "query": {
- "filter": {
- "event": {
- "_eq": "{{$trigger.event}}"
- }
- }
- }
+ "key": [
+ "{{$trigger.keys[0]}}"
+ ]
},
"position_x": 19,
"position_y": 1,
"reject": null,
- "resolve": "09e288c7-ba9e-43eb-b02d-d3ad03000505",
- "type": "item-read"
- },
- {
- "_syncId": "33ad2b75-22bb-4cd4-9bcf-7d4885fb4955",
- "flow": "5dabf92a-fba4-44ba-ba31-03d5a55ffc13",
- "key": "registrations",
- "name": "Registrations",
- "options": {
- "collection": "registrations",
- "query": {
- "filter": {
- "event": {
- "_eq": "{{registration.event}}"
- }
- }
- }
- },
- "position_x": 55,
- "position_y": 1,
- "reject": null,
- "resolve": "340bc06c-947d-46f2-82d0-a8862d4a3563",
+ "resolve": "de952a1b-5fc7-4374-9ab8-f93504830612",
"type": "item-read"
},
{
- "_syncId": "87ee3581-9acd-4f5a-9757-8104c9b5afed",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "request_mbi47",
- "name": "Webhook / Request URL",
+ "_syncId": "de952a1b-5fc7-4374-9ab8-f93504830612",
+ "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
+ "key": "condition_nynbu",
+ "name": "Condition",
"options": {
- "body": "{\n \"template_name\": \"icbd_confirmation\",\n \"ics_name\": {{ cv_correction_template }},\n \"email_address\": \"{{ registration.email }}\",\n \"subject\": \"ICBD registration confirmation\",\n \"parameters\": {{ data }}\n}",
- "headers": [
- {
- "header": "Content-Type",
- "value": "application/json"
- }
- ],
- "method": "POST",
- "url": "https://clic.epfl.ch/mail-sender/send?secret=74dc0c2810fc14a65c571bc38e3d6fe63d9a41c9"
+ "filter": {
+ "_and": [
+ {
+ "registration": {
+ "registration_email_sent": {
+ "_eq": false
+ }
+ }
+ },
+ {
+ "registration": {
+ "registration_complete": {
+ "_eq": true
+ }
+ }
+ }
+ ]
+ }
},
- "position_x": 75,
- "position_y": 33,
+ "position_x": 37,
+ "position_y": 1,
"reject": null,
- "resolve": "889a4969-1f6c-43bb-b8a8-407df5626728",
- "type": "request"
+ "resolve": "d9769944-bcef-4271-91b0-ba19af26ca2b",
+ "type": "condition"
},
{
- "_syncId": "0a602f39-11f6-4418-a14a-e1605609b0c1",
- "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
- "key": "send_email_kxure",
+ "_syncId": "d9769944-bcef-4271-91b0-ba19af26ca2b",
+ "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
+ "key": "mail_ofzwn",
"name": "Send Email",
"options": {
"data": {
- "event": "{{event}}",
- "qrcode_url": "https://clic.epfl.ch/clicketing/api/qrcode?value={{$trigger.key}}&size=1024",
- "registration": "{{$trigger.payload}}"
+ "registration": "{{registration}}"
},
- "subject": "Registration Confirmation for Hello World",
- "template": "hello_world_confirmation",
+ "subject": "Your registration to ICBD",
+ "template": "icbd_registration_email",
"to": [
- "{{$trigger.payload.email}}"
+ "{{registration.email}}"
],
"type": "template"
},
"position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": "2a6b54fd-c404-4b7d-a6d6-d28ac88ac601",
+ "resolve": "486a60ce-ad9d-4b9c-94bd-a576600685b4",
"type": "mail"
},
{
- "_syncId": "d8ea3c6f-a344-4b0e-8145-68423792c0ad",
- "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
- "key": "timeslot",
- "name": "timeslot",
+ "_syncId": "486a60ce-ad9d-4b9c-94bd-a576600685b4",
+ "flow": "d1849102-ba01-4a47-bd0c-9bfe125cda3a",
+ "key": "item_update_ez8bv",
+ "name": "Update Data",
"options": {
- "code": "module.exports = async function(data) {\n\treturn data.activity.timeslots.find(t => t.start_time == data.activity_registration.start);\n}"
+ "collection": "registrations",
+ "key": [
+ "{{registration.id}}"
+ ],
+ "payload": {
+ "registration_email_sent": true
+ }
},
- "position_x": 55,
+ "position_x": 73,
"position_y": 1,
"reject": null,
- "resolve": "1756a6a2-dc5c-4f38-b21b-0f7c36f93671",
- "type": "exec"
+ "resolve": null,
+ "type": "item-update"
},
{
- "_syncId": "1411b62c-1d8d-4f32-b194-34c239d4d6d3",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "translations",
- "name": "translations",
+ "_syncId": "e5551dae-8ba2-4711-aa47-1ffe2f9a267e",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "activity_registration",
+ "name": "activity_registration",
"options": {
- "collection": "icbd_activities_translations",
- "query": {
- "filter": {
- "id": {
- "_in": "{{$last}}"
- }
- }
- }
+ "collection": "icbd_activities_registrations",
+ "key": [
+ "{{$trigger.keys[0]}}"
+ ],
+ "permissions": "$full"
},
- "position_x": 57,
- "position_y": 17,
+ "position_x": 19,
+ "position_y": 1,
"reject": null,
- "resolve": "5ab58f88-3576-46cd-b140-f83147d2b992",
+ "resolve": "702df538-b576-4f29-8439-b3fed05c0f3d",
"type": "item-read"
},
{
- "_syncId": "e59f4679-f6cc-4e0e-b7bf-4da7eb5e2f77",
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "key": "translations_id",
- "name": "Translations id",
- "options": {
- "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn data.activities.map(a => a.translations).flat();\n}"
- },
- "position_x": 39,
- "position_y": 17,
- "reject": null,
- "resolve": "1411b62c-1d8d-4f32-b194-34c239d4d6d3",
- "type": "exec"
- },
- {
- "_syncId": "b582d00d-1ff3-4423-a77d-162b03b3a743",
- "flow": "ad0d9b41-7409-414d-aa77-1baf45565dbd",
- "key": "trigger_90arx",
- "name": "Trigger Flow",
+ "_syncId": "702df538-b576-4f29-8439-b3fed05c0f3d",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "activity",
+ "name": "activity",
"options": {
- "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
- "payload": {
- "key": "{{$trigger.keys[0]}}"
- }
+ "collection": "icbd_activities",
+ "key": [
+ "{{activity_registration.icbd_activity}}"
+ ],
+ "permissions": "$full"
},
"position_x": 37,
"position_y": 1,
"reject": null,
- "resolve": null,
- "type": "trigger"
+ "resolve": "d8ea3c6f-a344-4b0e-8145-68423792c0ad",
+ "type": "item-read"
},
{
- "_syncId": "393f4762-6950-4f91-bbcb-ab5fa1b13159",
- "flow": "4df2cfc1-5a97-45b8-a7ca-ef4e31a4d293",
- "key": "trigger_dkauf",
- "name": "Trigger Flow",
+ "_syncId": "d8ea3c6f-a344-4b0e-8145-68423792c0ad",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "timeslot",
+ "name": "timeslot",
"options": {
- "flow": "7c2abbef-afe1-425f-a08c-3013e360c95d",
- "iterationMode": "parallel",
- "payload": "{{$last}}"
+ "code": "module.exports = async function(data) {\n\treturn data.activity.timeslots.find(t => t.start_time == data.activity_registration.start);\n}"
},
- "position_x": 37,
+ "position_x": 55,
"position_y": 1,
"reject": null,
- "resolve": null,
- "type": "trigger"
+ "resolve": "1756a6a2-dc5c-4f38-b21b-0f7c36f93671",
+ "type": "exec"
},
{
- "_syncId": "3c276f44-136c-40dc-8278-116319d7ce75",
- "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
- "key": "trigger_ehyqh",
- "name": "Trigger Flow",
+ "_syncId": "1756a6a2-dc5c-4f38-b21b-0f7c36f93671",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "matching_registrations",
+ "name": "matching_registrations",
"options": {
- "flow": "0cd31a50-331b-4cc3-8ce2-fc12ba8634d2",
- "payload": {
- "key": "{{key}}"
+ "collection": "icbd_activities_registrations",
+ "permissions": "$full",
+ "query": {
+ "filter": {
+ "_and": [
+ {
+ "icbd_activity": {
+ "_eq": "{{activity.id}}"
+ }
+ },
+ {
+ "start": {
+ "_eq": "{{timeslot.start_time}}"
+ }
+ }
+ ]
+ }
}
},
"position_x": 73,
"position_y": 1,
"reject": null,
- "resolve": null,
- "type": "trigger"
- },
- {
- "_syncId": "fef5f568-8096-4f6e-b22a-466609fab749",
- "flow": "ad0d9b41-7409-414d-aa77-1baf45565dbd",
- "key": "trigger_js0o2",
- "name": "Trigger Flow",
- "options": {
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "payload": {
- "key": "{{$trigger.keys[0]}}"
- }
- },
- "position_x": 19,
- "position_y": 1,
- "reject": null,
- "resolve": "b582d00d-1ff3-4423-a77d-162b03b3a743",
- "type": "trigger"
+ "resolve": "bf95ba44-07c8-41f8-8c5e-ef25350e0375",
+ "type": "item-read"
},
{
- "_syncId": "0d327e03-7edc-4210-b806-8dbdb546a366",
- "flow": "93c8399e-f2b9-4808-9904-e01dac447ef8",
- "key": "trigger_o9drl",
- "name": "Trigger Flow",
+ "_syncId": "b00d1b9f-14b4-421a-a442-61d4b65fafb3",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "log_a9wh0",
+ "name": "Log to Console",
"options": {
- "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
- "payload": "{{$last}}"
+ "message": "{{$last}}"
},
- "position_x": 55,
+ "position_x": 91,
"position_y": 1,
"reject": null,
"resolve": null,
- "type": "trigger"
+ "type": "log"
},
{
- "_syncId": "0181fca8-1365-4407-b185-72a2af57791d",
- "flow": "93c8399e-f2b9-4808-9904-e01dac447ef8",
- "key": "trigger_o9drl_bjfdv",
- "name": "Trigger Flow",
+ "_syncId": "bf95ba44-07c8-41f8-8c5e-ef25350e0375",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "is_full",
+ "name": "Run Script",
"options": {
- "flow": "6cf86bff-9bfb-4707-9166-411d7b60f564",
- "payload": "{{$trigger.payload}}"
+ "code": "module.exports = async function(data) {\n\t// Do something...\n\treturn typeof data.timeslot.max_attendees === \"number\" && data.timeslot.max_attendees <= data.matching_registrations.length;\n}"
},
- "position_x": 37,
- "position_y": 16,
+ "position_x": 91,
+ "position_y": 1,
"reject": null,
- "resolve": null,
- "type": "trigger"
+ "resolve": "0ffc9ac6-005f-4131-a0af-ea2190763307",
+ "type": "exec"
},
{
- "_syncId": "8fb5d4df-5776-4bef-9098-abf6a4b4add2",
- "flow": "a9a5e703-de12-4e18-9e71-987bd759ab88",
- "key": "trigger_rmf4o",
- "name": "Trigger Flow",
+ "_syncId": "0ffc9ac6-005f-4131-a0af-ea2190763307",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "new_activity",
+ "name": "new_activity",
"options": {
- "flow": "2eb347c0-164e-4a8b-a6f1-e4d66472389b",
- "payload": {
- "key": "{{key}}"
- }
+ "code": "module.exports = async function(data) {\n copy = JSON.parse(JSON.stringify(data.activity));\n \n copy.timeslots.find(t => t.start_time == data.activity_registration.start).full = data.is_full;\n \n\treturn copy;\n}"
},
- "position_x": 55,
+ "position_x": 109,
"position_y": 1,
"reject": null,
- "resolve": "3c276f44-136c-40dc-8278-116319d7ce75",
- "type": "trigger"
+ "resolve": "e4ff4105-d960-4053-80b8-39d8b24ed3fe",
+ "type": "exec"
},
{
- "_syncId": "2a6b54fd-c404-4b7d-a6d6-d28ac88ac601",
- "flow": "9a85d36a-6cde-4a6a-8b35-dbe798226592",
- "key": "update_data_wwpfl",
+ "_syncId": "e4ff4105-d960-4053-80b8-39d8b24ed3fe",
+ "flow": "d2ba770b-1958-4b19-bcd3-82193aac3a3d",
+ "key": "item_update_wrcj6",
"name": "Update Data",
"options": {
- "collection": "registrations",
+ "collection": "icbd_activities",
"key": [
- "{{$trigger.key}}"
+ "{{activity.id}}"
],
- "payload": {
- "confirmation_email_sent": true
- }
+ "payload": "{{new_activity}}",
+ "permissions": "$full"
},
- "position_x": 73,
+ "position_x": 127,
"position_y": 1,
"reject": null,
"resolve": null,
diff --git a/directus-config/collections/permissions.json b/directus-config/collections/permissions.json
index d53c83a..c40ca35 100644
--- a/directus-config/collections/permissions.json
+++ b/directus-config/collections/permissions.json
@@ -1,91 +1,32 @@
[
{
- "_syncId": "acccdad0-5e58-46a6-b3f6-4c0bba96f1c5",
- "action": "read",
- "collection": "directus_files",
+ "_syncId": "04f7dd4e-e1e0-45a6-8476-5260373c03ce",
+ "action": "update",
+ "collection": "directus_panels",
"fields": [
- "id",
- "title",
- "tags",
- "description",
- "location",
- "storage",
- "focal_point_x",
- "focal_point_divider",
- "filename_disk",
- "focal_point_y",
- "storage_divider",
- "filename_download",
- "type",
- "metadata",
- "filesize",
- "modified_by",
- "width",
- "uploaded_on",
- "embed",
- "modified_on",
- "uploaded_by",
- "folder",
- "height",
- "charset",
- "$thumbnail",
- "duration"
+ "*"
],
- "permissions": {
- "_and": [
- {
- "_or": [
- {
- "folder": {
- "name": {
- "_eq": "public"
- }
- }
- },
- {
- "folder": {
- "parent": {
- "name": {
- "_eq": "public"
- }
- }
- }
- },
- {
- "folder": {
- "parent": {
- "parent": {
- "name": {
- "_eq": "public"
- }
- }
- }
- }
- }
- ]
- }
- ]
- },
- "policy": "_sync_default_public_policy",
+ "permissions": {},
+ "policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "35082efc-61f9-4590-88fa-8f713f59b8e1",
+ "_syncId": "051521b2-47a9-4e68-90e4-2ba4589d73b8",
"action": "read",
- "collection": "directus_folders",
+ "collection": "partner_category_translations",
"fields": [
"*"
],
"permissions": null,
- "policy": "_sync_default_public_policy",
+ "policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "df08aa7b-0b36-4e89-bb57-ba3622bac0db",
- "action": "create",
- "collection": "commission_memberships_translations",
+ "_syncId": "077cc260-c234-4015-a39c-cb4fc8be5ee2",
+ "action": "read",
+ "collection": "inventory",
"fields": [
"*"
],
@@ -95,21 +36,21 @@
"validation": {}
},
{
- "_syncId": "f79ff3d9-4113-4649-be0e-aecd6da62b9a",
+ "_syncId": "0a32b4f7-9f28-428e-91dd-cb60781101eb",
"action": "delete",
- "collection": "commission_memberships_translations",
+ "collection": "directus_files",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "a61bef65-a77c-4868-8b57-5622453ce895",
- "action": "read",
- "collection": "commission_memberships_translations",
+ "_syncId": "0c45ca3e-3d2d-4903-80ab-1a7fb5d48bab",
+ "action": "update",
+ "collection": "commissions",
"fields": [
"*"
],
@@ -119,9 +60,9 @@
"validation": {}
},
{
- "_syncId": "84bc3b1f-977f-4a5d-99fe-7166a62e57e1",
- "action": "share",
- "collection": "commission_memberships_translations",
+ "_syncId": "0c658508-40b1-425f-81b5-0df048091f3b",
+ "action": "read",
+ "collection": "commissions",
"fields": [
"*"
],
@@ -131,20 +72,20 @@
"validation": {}
},
{
- "_syncId": "bec91327-3b9f-4adb-b220-c2e094565607",
- "action": "update",
- "collection": "commission_memberships_translations",
+ "_syncId": "0ca12049-33c7-4fc7-9f89-33f94ea3844e",
+ "action": "read",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "8302d931-b6c7-4048-88d6-5ab1547fd1d1",
- "action": "create",
+ "_syncId": "134d033a-d52e-4ee3-819a-f216ee0df78e",
+ "action": "delete",
"collection": "commission_memberships",
"fields": [
"*"
@@ -155,9 +96,9 @@
"validation": {}
},
{
- "_syncId": "134d033a-d52e-4ee3-819a-f216ee0df78e",
- "action": "delete",
- "collection": "commission_memberships",
+ "_syncId": "15e5343f-42c8-4287-aa69-a9e1e5a7cf38",
+ "action": "create",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
@@ -167,9 +108,9 @@
"validation": {}
},
{
- "_syncId": "f2948289-d66d-4a40-af70-6d593d03e281",
- "action": "read",
- "collection": "commission_memberships",
+ "_syncId": "1c108c7f-a923-460f-9283-a81429e0fd9e",
+ "action": "update",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
@@ -179,9 +120,9 @@
"validation": {}
},
{
- "_syncId": "91ab350c-144e-47d5-a768-780fc48366d5",
- "action": "share",
- "collection": "commission_memberships",
+ "_syncId": "2057ec5a-aa20-4914-b94a-e2348b88008a",
+ "action": "create",
+ "collection": "commissions_translations",
"fields": [
"*"
],
@@ -191,21 +132,21 @@
"validation": {}
},
{
- "_syncId": "ce31bdde-63b2-4045-8430-39c5e02297c1",
- "action": "update",
- "collection": "commission_memberships",
+ "_syncId": "23efd9f3-c639-4408-847e-e1602203a015",
+ "action": "read",
+ "collection": "directus_folders",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "15e5343f-42c8-4287-aa69-a9e1e5a7cf38",
+ "_syncId": "24d8776b-32b4-4a06-924d-a770e3a9f116",
"action": "create",
- "collection": "commissions_social_links",
+ "collection": "members",
"fields": [
"*"
],
@@ -215,21 +156,25 @@
"validation": {}
},
{
- "_syncId": "6f4862a8-6c37-48f4-83ed-5c6dd1133e66",
- "action": "delete",
- "collection": "commissions_social_links",
+ "_syncId": "251d5a88-7053-4d7d-87e3-ee048e70c2db",
+ "action": "update",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "user_created": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "2cbe6d2e-cc46-496c-b340-d2c5b1ca64bf",
- "action": "read",
- "collection": "commissions_social_links",
+ "_syncId": "27b47978-0b19-40c3-b20c-8ab6372b39cc",
+ "action": "share",
+ "collection": "commissions",
"fields": [
"*"
],
@@ -239,20 +184,20 @@
"validation": {}
},
{
- "_syncId": "7960b3f5-2d4d-4057-98fe-79c9679c2d7a",
- "action": "share",
- "collection": "commissions_social_links",
+ "_syncId": "27cf8741-d45d-4ac8-9832-ad6b5bc7ab02",
+ "action": "create",
+ "collection": "directus_shares",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "1c108c7f-a923-460f-9283-a81429e0fd9e",
- "action": "update",
+ "_syncId": "2cbe6d2e-cc46-496c-b340-d2c5b1ca64bf",
+ "action": "read",
"collection": "commissions_social_links",
"fields": [
"*"
@@ -263,33 +208,33 @@
"validation": {}
},
{
- "_syncId": "2057ec5a-aa20-4914-b94a-e2348b88008a",
- "action": "create",
- "collection": "commissions_translations",
+ "_syncId": "30b430dd-825f-4dc1-9a06-23ccf78cbfb9",
+ "action": "update",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "45aff33f-d54f-4a63-ab78-4e28b654540d",
- "action": "delete",
- "collection": "commissions_translations",
+ "_syncId": "3a02b1e4-cbef-4745-aa6b-81432e59cc11",
+ "action": "create",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "d1a20691-b325-438b-884b-fa41b2a77d6b",
+ "_syncId": "3c206c3c-61a9-419d-ae52-2ce9b8e8fca6",
"action": "read",
- "collection": "commissions_translations",
+ "collection": "members",
"fields": [
"*"
],
@@ -299,57 +244,70 @@
"validation": {}
},
{
- "_syncId": "82d2a848-2309-46e8-8c3c-facb31126951",
- "action": "share",
- "collection": "commissions_translations",
+ "_syncId": "3dbe7713-c7f1-4413-873a-d849c81bccbb",
+ "action": "read",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "52f05867-34a6-4d74-be13-132bab429181",
- "action": "update",
- "collection": "commissions_translations",
+ "_syncId": "3de8b40b-038a-4c80-9e38-b7f482a84d45",
+ "action": "create",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "b58b79f1-ff0a-49f3-b117-48bc176c63ec",
- "action": "create",
- "collection": "commissions",
+ "_syncId": "3f550aea-a535-44c6-8714-e58e4e9c8deb",
+ "action": "read",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "_or": [
+ {
+ "role": {
+ "_eq": "$CURRENT_ROLE"
+ }
+ },
+ {
+ "role": {
+ "_null": true
+ }
+ }
+ ]
+ },
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "0c658508-40b1-425f-81b5-0df048091f3b",
+ "_syncId": "4363e628-59d8-4744-911d-62376749b6db",
"action": "read",
- "collection": "commissions",
+ "collection": "partner_category",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "27b47978-0b19-40c3-b20c-8ab6372b39cc",
- "action": "share",
- "collection": "commissions",
+ "_syncId": "4512829f-cabb-4fda-af22-615b71094b78",
+ "action": "create",
+ "collection": "social_links",
"fields": [
"*"
],
@@ -359,10 +317,10 @@
"validation": {}
},
{
- "_syncId": "0c45ca3e-3d2d-4903-80ab-1a7fb5d48bab",
- "action": "update",
- "collection": "commissions",
- "fields": [
+ "_syncId": "45aff33f-d54f-4a63-ab78-4e28b654540d",
+ "action": "delete",
+ "collection": "commissions_translations",
+ "fields": [
"*"
],
"permissions": {},
@@ -371,9 +329,9 @@
"validation": {}
},
{
- "_syncId": "3de8b40b-038a-4c80-9e38-b7f482a84d45",
- "action": "create",
- "collection": "directus_dashboards",
+ "_syncId": "4fe50efe-bea9-43e9-99c4-ec19427e1dff",
+ "action": "update",
+ "collection": "directus_files",
"fields": [
"*"
],
@@ -383,88 +341,106 @@
"validation": null
},
{
- "_syncId": "b1186791-63b6-4aa4-b168-79200564b84f",
- "action": "delete",
- "collection": "directus_dashboards",
+ "_syncId": "52f05867-34a6-4d74-be13-132bab429181",
+ "action": "update",
+ "collection": "commissions_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "aadb9e37-96f3-4744-85b0-3ef8fc69d896",
- "action": "read",
- "collection": "directus_dashboards",
+ "_syncId": "553364bb-cb32-4339-98cb-4a4a6c894b36",
+ "action": "update",
+ "collection": "social_links",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "30b430dd-825f-4dc1-9a06-23ccf78cbfb9",
+ "_syncId": "6064c219-350e-483b-9c50-c1178900fd32",
"action": "update",
- "collection": "directus_dashboards",
+ "collection": "members",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "fcd43c63-3424-4d65-8beb-4b31f8393999",
- "action": "create",
- "collection": "directus_files",
+ "_syncId": "609ad470-e30e-4933-b3d3-66a53aa089f9",
+ "action": "share",
+ "collection": "std_cell",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "0a32b4f7-9f28-428e-91dd-cb60781101eb",
- "action": "delete",
- "collection": "directus_files",
+ "_syncId": "609b3f87-f2db-4457-863f-9e658612ca7e",
+ "action": "create",
+ "collection": "std_cell",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "9cdb2b92-a9b4-4c7d-8c3a-d55e1b1f3581",
- "action": "read",
- "collection": "directus_files",
+ "_syncId": "60d0af8b-637e-45f9-82bf-eba3fdfacc20",
+ "action": "update",
+ "collection": "directus_users",
"fields": [
- "*"
+ "first_name",
+ "last_name",
+ "email",
+ "password",
+ "location",
+ "title",
+ "description",
+ "avatar",
+ "language",
+ "appearance",
+ "theme_light",
+ "theme_dark",
+ "theme_light_overrides",
+ "theme_dark_overrides",
+ "tfa_secret"
],
- "permissions": {},
+ "permissions": {
+ "id": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "4fe50efe-bea9-43e9-99c4-ec19427e1dff",
- "action": "update",
- "collection": "directus_files",
+ "_syncId": "61b4894c-1aab-459d-a6cb-8261a3490825",
+ "action": "share",
+ "collection": "social_links",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
"_syncId": "6241c536-0834-48b7-a238-d5e9febed930",
@@ -489,31 +465,21 @@
"validation": null
},
{
- "_syncId": "ac6b023b-1ef0-400e-9738-7f53ab1ba1fb",
+ "_syncId": "62993fa2-2f22-4fce-b14e-d0bb7747258a",
"action": "create",
- "collection": "directus_folders",
+ "collection": "partners",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
- },
- {
- "_syncId": "daf45953-ecd4-4a8b-a1f8-987872fef7cf",
- "action": "delete",
- "collection": "directus_folders",
- "fields": null,
- "permissions": {},
- "policy": "02170d6b-60c9-452a-950e-5d66309f708c",
- "presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "23efd9f3-c639-4408-847e-e1602203a015",
- "action": "read",
- "collection": "directus_folders",
+ "_syncId": "659cd4b8-c24f-46d0-9117-700d18bdbe77",
+ "action": "create",
+ "collection": "directus_panels",
"fields": [
"*"
],
@@ -523,192 +489,153 @@
"validation": null
},
{
- "_syncId": "d20878b6-1913-4d63-87d1-a502f969746d",
- "action": "update",
- "collection": "directus_folders",
+ "_syncId": "65cd6ce9-fc5a-42c6-a993-2a8a454ab070",
+ "action": "delete",
+ "collection": "partners",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "659cd4b8-c24f-46d0-9117-700d18bdbe77",
- "action": "create",
- "collection": "directus_panels",
+ "_syncId": "669841b0-4844-49b1-99d5-605873f8e80b",
+ "action": "read",
+ "collection": "std_cell",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "b46dd142-3e24-4625-bbf7-f7cd88b6e126",
+ "_syncId": "69d831d6-4c86-481d-a725-35647b06f6e7",
"action": "delete",
- "collection": "directus_panels",
+ "collection": "members",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "0ca12049-33c7-4fc7-9f89-33f94ea3844e",
- "action": "read",
- "collection": "directus_panels",
+ "_syncId": "6d404d44-e57a-41b6-81b0-74a3d44895a2",
+ "action": "update",
+ "collection": "partners",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "04f7dd4e-e1e0-45a6-8476-5260373c03ce",
- "action": "update",
- "collection": "directus_panels",
+ "_syncId": "6f4862a8-6c37-48f4-83ed-5c6dd1133e66",
+ "action": "delete",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "837e9540-4449-48ca-b127-bcfc753bf2db",
+ "_syncId": "73bae787-a52c-4ade-938b-d3f5d1ca7e85",
"action": "read",
- "collection": "directus_roles",
+ "collection": "languages",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "27cf8741-d45d-4ac8-9832-ad6b5bc7ab02",
- "action": "create",
- "collection": "directus_shares",
+ "_syncId": "76e90fd1-ce25-4f97-a233-844e0700e437",
+ "action": "delete",
+ "collection": "social_links",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "91f5ed35-b5cb-4f54-bff6-f3df005d6980",
+ "_syncId": "784bb05c-dbdb-4897-8a9f-d2e7321db039",
"action": "delete",
- "collection": "directus_shares",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {
- "user_created": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "3f550aea-a535-44c6-8714-e58e4e9c8deb",
- "action": "read",
- "collection": "directus_shares",
+ "_syncId": "7960b3f5-2d4d-4057-98fe-79c9679c2d7a",
+ "action": "share",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
- "permissions": {
- "_or": [
- {
- "role": {
- "_eq": "$CURRENT_ROLE"
- }
- },
- {
- "role": {
- "_null": true
- }
- }
- ]
- },
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "251d5a88-7053-4d7d-87e3-ee048e70c2db",
- "action": "update",
- "collection": "directus_shares",
+ "_syncId": "82d2a848-2309-46e8-8c3c-facb31126951",
+ "action": "share",
+ "collection": "commissions_translations",
"fields": [
"*"
],
- "permissions": {
- "user_created": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "a2c87ace-62d1-4db8-8748-6085cd244d9c",
- "action": "read",
- "collection": "directus_users",
+ "_syncId": "8302d931-b6c7-4048-88d6-5ab1547fd1d1",
+ "action": "create",
+ "collection": "commission_memberships",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "60d0af8b-637e-45f9-82bf-eba3fdfacc20",
- "action": "update",
- "collection": "directus_users",
+ "_syncId": "837e9540-4449-48ca-b127-bcfc753bf2db",
+ "action": "read",
+ "collection": "directus_roles",
"fields": [
- "first_name",
- "last_name",
- "email",
- "password",
- "location",
- "title",
- "description",
- "avatar",
- "language",
- "appearance",
- "theme_light",
- "theme_dark",
- "theme_light_overrides",
- "theme_dark_overrides",
- "tfa_secret"
+ "*"
],
- "permissions": {
- "id": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "077cc260-c234-4015-a39c-cb4fc8be5ee2",
- "action": "read",
- "collection": "inventory",
+ "_syncId": "84bc3b1f-977f-4a5d-99fe-7166a62e57e1",
+ "action": "share",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
@@ -718,9 +645,9 @@
"validation": {}
},
{
- "_syncId": "73bae787-a52c-4ade-938b-d3f5d1ca7e85",
- "action": "read",
- "collection": "languages",
+ "_syncId": "91ab350c-144e-47d5-a768-780fc48366d5",
+ "action": "share",
+ "collection": "commission_memberships",
"fields": [
"*"
],
@@ -730,45 +657,49 @@
"validation": {}
},
{
- "_syncId": "24d8776b-32b4-4a06-924d-a770e3a9f116",
- "action": "create",
- "collection": "members",
+ "_syncId": "91f5ed35-b5cb-4f54-bff6-f3df005d6980",
+ "action": "delete",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "user_created": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "69d831d6-4c86-481d-a725-35647b06f6e7",
- "action": "delete",
- "collection": "members",
+ "_syncId": "9cdb2b92-a9b4-4c7d-8c3a-d55e1b1f3581",
+ "action": "read",
+ "collection": "directus_files",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "3c206c3c-61a9-419d-ae52-2ce9b8e8fca6",
+ "_syncId": "a2c87ace-62d1-4db8-8748-6085cd244d9c",
"action": "read",
- "collection": "members",
+ "collection": "directus_users",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "f5c30c4a-84b3-445a-9206-2ff3487c67fe",
- "action": "share",
- "collection": "members",
+ "_syncId": "a61bef65-a77c-4868-8b57-5622453ce895",
+ "action": "read",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
@@ -778,57 +709,57 @@
"validation": {}
},
{
- "_syncId": "6064c219-350e-483b-9c50-c1178900fd32",
- "action": "update",
- "collection": "members",
+ "_syncId": "aadb9e37-96f3-4744-85b0-3ef8fc69d896",
+ "action": "read",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "051521b2-47a9-4e68-90e4-2ba4589d73b8",
- "action": "read",
- "collection": "partner_category_translations",
+ "_syncId": "ac6b023b-1ef0-400e-9738-7f53ab1ba1fb",
+ "action": "create",
+ "collection": "directus_folders",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "4363e628-59d8-4744-911d-62376749b6db",
- "action": "read",
- "collection": "partner_category",
+ "_syncId": "b1186791-63b6-4aa4-b168-79200564b84f",
+ "action": "delete",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "62993fa2-2f22-4fce-b14e-d0bb7747258a",
- "action": "create",
- "collection": "partners",
+ "_syncId": "b46dd142-3e24-4625-bbf7-f7cd88b6e126",
+ "action": "delete",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "65cd6ce9-fc5a-42c6-a993-2a8a454ab070",
- "action": "delete",
- "collection": "partners",
+ "_syncId": "b58b79f1-ff0a-49f3-b117-48bc176c63ec",
+ "action": "create",
+ "collection": "commissions",
"fields": [
"*"
],
@@ -838,21 +769,21 @@
"validation": {}
},
{
- "_syncId": "dea4d32d-16b3-4426-9da2-445dcf7fd253",
- "action": "read",
- "collection": "partners",
+ "_syncId": "b9605b26-f9c8-4498-9808-73ef25f2c2cb",
+ "action": "delete",
+ "collection": "std_cell",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "eee803a9-a400-4a52-8896-6401e9575d90",
- "action": "share",
- "collection": "partners",
+ "_syncId": "bec91327-3b9f-4adb-b220-c2e094565607",
+ "action": "update",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
@@ -862,9 +793,9 @@
"validation": {}
},
{
- "_syncId": "6d404d44-e57a-41b6-81b0-74a3d44895a2",
+ "_syncId": "ce31bdde-63b2-4045-8430-39c5e02297c1",
"action": "update",
- "collection": "partners",
+ "collection": "commission_memberships",
"fields": [
"*"
],
@@ -874,9 +805,9 @@
"validation": {}
},
{
- "_syncId": "4512829f-cabb-4fda-af22-615b71094b78",
- "action": "create",
- "collection": "social_links",
+ "_syncId": "d1a20691-b325-438b-884b-fa41b2a77d6b",
+ "action": "read",
+ "collection": "commissions_translations",
"fields": [
"*"
],
@@ -886,45 +817,43 @@
"validation": {}
},
{
- "_syncId": "76e90fd1-ce25-4f97-a233-844e0700e437",
- "action": "delete",
- "collection": "social_links",
+ "_syncId": "d20878b6-1913-4d63-87d1-a502f969746d",
+ "action": "update",
+ "collection": "directus_folders",
"fields": [
"*"
],
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "eb66f908-5610-409f-b94a-1dee92b47c5e",
- "action": "read",
- "collection": "social_links",
+ "_syncId": "d8b74a4e-9d9b-4beb-8115-89b7227f8c61",
+ "action": "update",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "61b4894c-1aab-459d-a6cb-8261a3490825",
- "action": "share",
- "collection": "social_links",
- "fields": [
- "*"
- ],
+ "_syncId": "daf45953-ecd4-4a8b-a1f8-987872fef7cf",
+ "action": "delete",
+ "collection": "directus_folders",
+ "fields": null,
"permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "553364bb-cb32-4339-98cb-4a4a6c894b36",
- "action": "update",
- "collection": "social_links",
+ "_syncId": "dea4d32d-16b3-4426-9da2-445dcf7fd253",
+ "action": "read",
+ "collection": "partners",
"fields": [
"*"
],
@@ -934,21 +863,21 @@
"validation": {}
},
{
- "_syncId": "3a02b1e4-cbef-4745-aa6b-81432e59cc11",
+ "_syncId": "df08aa7b-0b36-4e89-bb57-ba3622bac0db",
"action": "create",
- "collection": "std_cell_translations",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "784bb05c-dbdb-4897-8a9f-d2e7321db039",
- "action": "delete",
- "collection": "std_cell_translations",
+ "_syncId": "df66f886-3967-4eae-af35-26fe2eb35751",
+ "action": "update",
+ "collection": "std_cell",
"fields": [
"*"
],
@@ -958,57 +887,45 @@
"validation": null
},
{
- "_syncId": "3dbe7713-c7f1-4413-873a-d849c81bccbb",
+ "_syncId": "eb66f908-5610-409f-b94a-1dee92b47c5e",
"action": "read",
- "collection": "std_cell_translations",
+ "collection": "social_links",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "f58f30d6-7b73-4994-a43c-588ea571ffe1",
+ "_syncId": "eee803a9-a400-4a52-8896-6401e9575d90",
"action": "share",
- "collection": "std_cell_translations",
- "fields": [
- "*"
- ],
- "permissions": null,
- "policy": "02170d6b-60c9-452a-950e-5d66309f708c",
- "presets": null,
- "validation": null
- },
- {
- "_syncId": "d8b74a4e-9d9b-4beb-8115-89b7227f8c61",
- "action": "update",
- "collection": "std_cell_translations",
+ "collection": "partners",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "609b3f87-f2db-4457-863f-9e658612ca7e",
- "action": "create",
- "collection": "std_cell",
+ "_syncId": "f2948289-d66d-4a40-af70-6d593d03e281",
+ "action": "read",
+ "collection": "commission_memberships",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "b9605b26-f9c8-4498-9808-73ef25f2c2cb",
- "action": "delete",
- "collection": "std_cell",
+ "_syncId": "f58f30d6-7b73-4994-a43c-588ea571ffe1",
+ "action": "share",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
@@ -1018,45 +935,45 @@
"validation": null
},
{
- "_syncId": "669841b0-4844-49b1-99d5-605873f8e80b",
- "action": "read",
- "collection": "std_cell",
+ "_syncId": "f5c30c4a-84b3-445a-9206-2ff3487c67fe",
+ "action": "share",
+ "collection": "members",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "609ad470-e30e-4933-b3d3-66a53aa089f9",
- "action": "share",
- "collection": "std_cell",
+ "_syncId": "f79ff3d9-4113-4649-be0e-aecd6da62b9a",
+ "action": "delete",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "df66f886-3967-4eae-af35-26fe2eb35751",
- "action": "update",
- "collection": "std_cell",
+ "_syncId": "fcd43c63-3424-4d65-8beb-4b31f8393999",
+ "action": "create",
+ "collection": "directus_files",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "02170d6b-60c9-452a-950e-5d66309f708c",
"presets": null,
"validation": null
},
{
- "_syncId": "ac8affde-32b0-4a4f-ad37-ad3b8a3f4d17",
+ "_syncId": "057bcacd-50e4-4f3b-9437-6bf6d3ed67c2",
"action": "read",
- "collection": "association_memberships",
+ "collection": "members",
"fields": [
"*"
],
@@ -1066,8 +983,8 @@
"validation": {}
},
{
- "_syncId": "057bcacd-50e4-4f3b-9437-6bf6d3ed67c2",
- "action": "read",
+ "_syncId": "3e245f6f-b642-4a48-b315-b41cceefabfd",
+ "action": "update",
"collection": "members",
"fields": [
"*"
@@ -1078,9 +995,9 @@
"validation": {}
},
{
- "_syncId": "3e245f6f-b642-4a48-b315-b41cceefabfd",
- "action": "update",
- "collection": "members",
+ "_syncId": "ac8affde-32b0-4a4f-ad37-ad3b8a3f4d17",
+ "action": "read",
+ "collection": "association_memberships",
"fields": [
"*"
],
@@ -1090,9 +1007,9 @@
"validation": {}
},
{
- "_syncId": "815dd412-6040-4a89-bf56-f3204cb4901d",
+ "_syncId": "0152b0da-79bb-4113-97c8-8d71dfcb19a5",
"action": "read",
- "collection": "artists",
+ "collection": "icbd_phds",
"fields": [
"*"
],
@@ -1102,21 +1019,21 @@
"validation": null
},
{
- "_syncId": "432b3440-e5c4-4889-9ed2-16dc78118bd8",
+ "_syncId": "0165b8c3-ebc6-41a7-a32f-f2cfd5167b68",
"action": "read",
- "collection": "association_memberships_translations",
+ "collection": "icbd_speakers",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "9e40b216-2ad4-4439-94c0-39cba152bb34",
+ "_syncId": "0ffb808e-7548-45b0-bbf7-48ff0ead67de",
"action": "read",
- "collection": "association_memberships",
+ "collection": "association_public_files_translations",
"fields": [
"*"
],
@@ -1126,45 +1043,21 @@
"validation": {}
},
{
- "_syncId": "34d6908b-390e-4a74-8441-95aaf60b2efa",
+ "_syncId": "1addc5f4-cbdf-41a2-8f93-5f79025787f2",
"action": "read",
- "collection": "association_partners",
+ "collection": "save_the_date_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "3defa3f7-1ce3-4020-ba08-eed88df060a4",
- "action": "read",
- "collection": "association_poles_translations",
- "fields": [
- "*"
- ],
- "permissions": {},
- "policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
- "presets": null,
- "validation": {}
- },
- {
- "_syncId": "85371696-f086-44ba-b5c9-0ca583ccddd4",
- "action": "read",
- "collection": "association_poles",
- "fields": [
- "*"
- ],
- "permissions": {},
- "policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
- "presets": null,
- "validation": {}
- },
- {
- "_syncId": "0ffb808e-7548-45b0-bbf7-48ff0ead67de",
+ "_syncId": "1ff91d65-20bb-48ff-9419-a678d31fbf45",
"action": "read",
- "collection": "association_public_files_translations",
+ "collection": "languages",
"fields": [
"*"
],
@@ -1174,33 +1067,33 @@
"validation": {}
},
{
- "_syncId": "f2e5f5b4-a2aa-499c-a53b-4a2bd96f143b",
+ "_syncId": "219b7e90-d626-4abf-8dca-56d1a3380b21",
"action": "read",
- "collection": "association_public_files",
+ "collection": "game_star_articles_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "3e1355f1-a19a-4236-9a5e-a6fa99e4405b",
+ "_syncId": "25202a29-df01-4b0a-92e5-e95fdcfdac32",
"action": "read",
- "collection": "association_social_links",
+ "collection": "game_star_events",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "afab5ddf-7658-42ab-ac9b-75bcf7f205b7",
+ "_syncId": "294fab76-621b-46c3-8948-4348d327883f",
"action": "read",
- "collection": "association_translations",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
@@ -1210,33 +1103,33 @@
"validation": {}
},
{
- "_syncId": "c487c375-5c11-4e4a-a599-2768c832bf6d",
+ "_syncId": "2c773d4e-3841-4e3c-92f6-8ed7eecfa1f0",
"action": "read",
- "collection": "association",
+ "collection": "std_cell",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "294fab76-621b-46c3-8948-4348d327883f",
+ "_syncId": "3280388b-fe2b-4f64-a39e-ff94dbcdee8f",
"action": "read",
- "collection": "commission_memberships_translations",
+ "collection": "game_star_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "ad5a3edb-cdcf-4263-a987-250b3df9e3cc",
+ "_syncId": "34d6908b-390e-4a74-8441-95aaf60b2efa",
"action": "read",
- "collection": "commission_memberships",
+ "collection": "association_partners",
"fields": [
"*"
],
@@ -1246,9 +1139,9 @@
"validation": {}
},
{
- "_syncId": "f4565a30-f8ea-4268-8c00-697a2c1f06b9",
+ "_syncId": "35cc9d73-9df0-4e36-a86b-c93d182b5e23",
"action": "read",
- "collection": "commissions_social_links",
+ "collection": "partners",
"fields": [
"*"
],
@@ -1258,21 +1151,21 @@
"validation": {}
},
{
- "_syncId": "a3af38a7-044f-470d-869f-8630c2031b34",
+ "_syncId": "3ca3be96-351e-4c37-b307-a90f87e745f7",
"action": "read",
- "collection": "commissions_translations",
+ "collection": "save_the_date",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "e6178577-7611-4f26-a735-cf97acc2ada0",
+ "_syncId": "3defa3f7-1ce3-4020-ba08-eed88df060a4",
"action": "read",
- "collection": "commissions",
+ "collection": "association_poles_translations",
"fields": [
"*"
],
@@ -1282,9 +1175,9 @@
"validation": {}
},
{
- "_syncId": "ea46f4bf-3af7-4cc0-82da-27ee040a1d86",
+ "_syncId": "3e1355f1-a19a-4236-9a5e-a6fa99e4405b",
"action": "read",
- "collection": "directus_files",
+ "collection": "association_social_links",
"fields": [
"*"
],
@@ -1294,9 +1187,9 @@
"validation": {}
},
{
- "_syncId": "c84d2c0d-ae8a-4400-a962-57d14d4dc50c",
+ "_syncId": "4304fb94-6628-4521-a4f0-1f6bd48b22cd",
"action": "read",
- "collection": "directus_folders",
+ "collection": "social_links",
"fields": [
"*"
],
@@ -1306,9 +1199,9 @@
"validation": {}
},
{
- "_syncId": "aed464b5-985e-4206-87c5-b179effb6cef",
+ "_syncId": "432b3440-e5c4-4889-9ed2-16dc78118bd8",
"action": "read",
- "collection": "directus_translations",
+ "collection": "association_memberships_translations",
"fields": [
"*"
],
@@ -1318,21 +1211,9 @@
"validation": {}
},
{
- "_syncId": "219b7e90-d626-4abf-8dca-56d1a3380b21",
- "action": "read",
- "collection": "game_star_articles_translations",
- "fields": [
- "*"
- ],
- "permissions": null,
- "policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
- "presets": null,
- "validation": null
- },
- {
- "_syncId": "515cf5fb-bbc2-42cd-b6ca-d94f9c4eeb92",
+ "_syncId": "49367d8e-46d5-437c-80ce-504c94145c36",
"action": "read",
- "collection": "game_star_articles",
+ "collection": "game_star_projects",
"fields": [
"*"
],
@@ -1342,9 +1223,9 @@
"validation": null
},
{
- "_syncId": "c6dcaed5-7124-4e9b-aac1-97e0367eada7",
+ "_syncId": "4fd51b3e-dcb7-476e-8b0f-c918f68517be",
"action": "read",
- "collection": "game_star_events_translations",
+ "collection": "ICBD_translations",
"fields": [
"*"
],
@@ -1354,9 +1235,9 @@
"validation": null
},
{
- "_syncId": "25202a29-df01-4b0a-92e5-e95fdcfdac32",
+ "_syncId": "515cf5fb-bbc2-42cd-b6ca-d94f9c4eeb92",
"action": "read",
- "collection": "game_star_events",
+ "collection": "game_star_articles",
"fields": [
"*"
],
@@ -1366,9 +1247,9 @@
"validation": null
},
{
- "_syncId": "9fac0729-74e9-4652-855c-e73af75fd7d3",
+ "_syncId": "5332eca3-2cea-4d08-8d03-8c1069a4fe58",
"action": "read",
- "collection": "game_star_projects_translations",
+ "collection": "subsonic",
"fields": [
"*"
],
@@ -1378,9 +1259,9 @@
"validation": null
},
{
- "_syncId": "49367d8e-46d5-437c-80ce-504c94145c36",
+ "_syncId": "645f6c20-85c1-4a35-b257-6915a0580915",
"action": "read",
- "collection": "game_star_projects",
+ "collection": "icbd_activities",
"fields": [
"*"
],
@@ -1402,21 +1283,21 @@
"validation": null
},
{
- "_syncId": "3280388b-fe2b-4f64-a39e-ff94dbcdee8f",
+ "_syncId": "78e4c1f4-07d2-4e3f-bc98-bce061923d49",
"action": "read",
- "collection": "game_star_translations",
+ "collection": "partner_category",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "bf213b93-5495-49f9-bb58-57faa7c54fce",
+ "_syncId": "815dd412-6040-4a89-bf56-f3204cb4901d",
"action": "read",
- "collection": "game_star",
+ "collection": "artists",
"fields": [
"*"
],
@@ -1426,45 +1307,45 @@
"validation": null
},
{
- "_syncId": "cf5467cb-bd4e-43d3-846d-2c6237d7bad8",
+ "_syncId": "85371696-f086-44ba-b5c9-0ca583ccddd4",
"action": "read",
- "collection": "icbd_activities_icbd_speakers",
+ "collection": "association_poles",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "c57c2471-0315-4efa-b54a-35465eced6b7",
+ "_syncId": "9c4b28d1-7435-4fc5-b930-ae5ecfcfe041",
"action": "read",
- "collection": "icbd_activities_translations",
+ "collection": "news",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "645f6c20-85c1-4a35-b257-6915a0580915",
+ "_syncId": "9e40b216-2ad4-4439-94c0-39cba152bb34",
"action": "read",
- "collection": "icbd_activities",
+ "collection": "association_memberships",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "e900d88b-a616-48df-b03b-da3a7222033e",
+ "_syncId": "9fac0729-74e9-4652-855c-e73af75fd7d3",
"action": "read",
- "collection": "ICBD_files",
+ "collection": "game_star_projects_translations",
"fields": [
"*"
],
@@ -1474,33 +1355,33 @@
"validation": null
},
{
- "_syncId": "0152b0da-79bb-4113-97c8-8d71dfcb19a5",
+ "_syncId": "a2f38fae-b092-4a12-87f8-10d2f6ddda44",
"action": "read",
- "collection": "icbd_phds",
+ "collection": "members",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "0165b8c3-ebc6-41a7-a32f-f2cfd5167b68",
+ "_syncId": "a3af38a7-044f-470d-869f-8630c2031b34",
"action": "read",
- "collection": "icbd_speakers",
+ "collection": "commissions_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "4fd51b3e-dcb7-476e-8b0f-c918f68517be",
+ "_syncId": "a85c370d-70cf-4907-9561-4570b1ec2e7a",
"action": "read",
- "collection": "ICBD_translations",
+ "collection": "subsonic_translations",
"fields": [
"*"
],
@@ -1510,33 +1391,33 @@
"validation": null
},
{
- "_syncId": "b116908f-d0ff-4c5e-9929-fe2a5fcc9925",
+ "_syncId": "ad5a3edb-cdcf-4263-a987-250b3df9e3cc",
"action": "read",
- "collection": "ICBD",
+ "collection": "commission_memberships",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "1ff91d65-20bb-48ff-9419-a678d31fbf45",
+ "_syncId": "ae4db300-3548-4bb3-bd2d-326639f39398",
"action": "read",
- "collection": "languages",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "a2f38fae-b092-4a12-87f8-10d2f6ddda44",
+ "_syncId": "aed464b5-985e-4206-87c5-b179effb6cef",
"action": "read",
- "collection": "members",
+ "collection": "directus_translations",
"fields": [
"*"
],
@@ -1558,9 +1439,9 @@
"validation": {}
},
{
- "_syncId": "ba44f00e-5934-4210-ab50-34b35991c8fc",
+ "_syncId": "afab5ddf-7658-42ab-ac9b-75bcf7f205b7",
"action": "read",
- "collection": "news_partners",
+ "collection": "association_translations",
"fields": [
"*"
],
@@ -1570,21 +1451,21 @@
"validation": {}
},
{
- "_syncId": "d04aadb2-7a12-4316-8b7e-cdf60e17606f",
+ "_syncId": "b116908f-d0ff-4c5e-9929-fe2a5fcc9925",
"action": "read",
- "collection": "news_translations",
+ "collection": "ICBD",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "9c4b28d1-7435-4fc5-b930-ae5ecfcfe041",
+ "_syncId": "ba44f00e-5934-4210-ab50-34b35991c8fc",
"action": "read",
- "collection": "news",
+ "collection": "news_partners",
"fields": [
"*"
],
@@ -1606,21 +1487,21 @@
"validation": {}
},
{
- "_syncId": "78e4c1f4-07d2-4e3f-bc98-bce061923d49",
+ "_syncId": "bf213b93-5495-49f9-bb58-57faa7c54fce",
"action": "read",
- "collection": "partner_category",
+ "collection": "game_star",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "35cc9d73-9df0-4e36-a86b-c93d182b5e23",
+ "_syncId": "c487c375-5c11-4e4a-a599-2768c832bf6d",
"action": "read",
- "collection": "partners",
+ "collection": "association",
"fields": [
"*"
],
@@ -1630,9 +1511,9 @@
"validation": {}
},
{
- "_syncId": "1addc5f4-cbdf-41a2-8f93-5f79025787f2",
+ "_syncId": "c57c2471-0315-4efa-b54a-35465eced6b7",
"action": "read",
- "collection": "save_the_date_translations",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -1642,9 +1523,9 @@
"validation": null
},
{
- "_syncId": "3ca3be96-351e-4c37-b307-a90f87e745f7",
+ "_syncId": "c6dcaed5-7124-4e9b-aac1-97e0367eada7",
"action": "read",
- "collection": "save_the_date",
+ "collection": "game_star_events_translations",
"fields": [
"*"
],
@@ -1654,9 +1535,9 @@
"validation": null
},
{
- "_syncId": "4304fb94-6628-4521-a4f0-1f6bd48b22cd",
+ "_syncId": "c84d2c0d-ae8a-4400-a962-57d14d4dc50c",
"action": "read",
- "collection": "social_links",
+ "collection": "directus_folders",
"fields": [
"*"
],
@@ -1666,9 +1547,9 @@
"validation": {}
},
{
- "_syncId": "ae4db300-3548-4bb3-bd2d-326639f39398",
+ "_syncId": "cf5467cb-bd4e-43d3-846d-2c6237d7bad8",
"action": "read",
- "collection": "std_cell_translations",
+ "collection": "icbd_activities_icbd_speakers",
"fields": [
"*"
],
@@ -1678,33 +1559,33 @@
"validation": null
},
{
- "_syncId": "2c773d4e-3841-4e3c-92f6-8ed7eecfa1f0",
+ "_syncId": "d04aadb2-7a12-4316-8b7e-cdf60e17606f",
"action": "read",
- "collection": "std_cell",
+ "collection": "news_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "a85c370d-70cf-4907-9561-4570b1ec2e7a",
+ "_syncId": "e6178577-7611-4f26-a735-cf97acc2ada0",
"action": "read",
- "collection": "subsonic_translations",
+ "collection": "commissions",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "5332eca3-2cea-4d08-8d03-8c1069a4fe58",
+ "_syncId": "e900d88b-a616-48df-b03b-da3a7222033e",
"action": "read",
- "collection": "subsonic",
+ "collection": "ICBD_files",
"fields": [
"*"
],
@@ -1714,9 +1595,45 @@
"validation": null
},
{
- "_syncId": "7ac3fbfa-79c1-4593-8224-a7e46941a2a7",
- "action": "create",
- "collection": "events",
+ "_syncId": "ea46f4bf-3af7-4cc0-82da-27ee040a1d86",
+ "action": "read",
+ "collection": "directus_files",
+ "fields": [
+ "*"
+ ],
+ "permissions": {},
+ "policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
+ "presets": null,
+ "validation": {}
+ },
+ {
+ "_syncId": "f2e5f5b4-a2aa-499c-a53b-4a2bd96f143b",
+ "action": "read",
+ "collection": "association_public_files",
+ "fields": [
+ "*"
+ ],
+ "permissions": {},
+ "policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
+ "presets": null,
+ "validation": {}
+ },
+ {
+ "_syncId": "f4565a30-f8ea-4268-8c00-697a2c1f06b9",
+ "action": "read",
+ "collection": "commissions_social_links",
+ "fields": [
+ "*"
+ ],
+ "permissions": {},
+ "policy": "5442dac0-5f51-434d-90b1-285734ff8e49",
+ "presets": null,
+ "validation": {}
+ },
+ {
+ "_syncId": "0838c140-4723-4120-aabf-6373c003d973",
+ "action": "read",
+ "collection": "ICBD_translations",
"fields": [
"*"
],
@@ -1726,9 +1643,9 @@
"validation": null
},
{
- "_syncId": "edc7e878-70cb-449f-84c5-70f301eff054",
- "action": "delete",
- "collection": "events",
+ "_syncId": "1451efa2-810b-4c1e-a9c9-207b2e238f03",
+ "action": "update",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -1738,9 +1655,9 @@
"validation": null
},
{
- "_syncId": "3191da8a-4b6b-472b-bc52-59ddf7385e1a",
- "action": "read",
- "collection": "events",
+ "_syncId": "199f198e-45f8-4227-9991-17738879daac",
+ "action": "share",
+ "collection": "icbd_activities",
"fields": [
"*"
],
@@ -1750,9 +1667,9 @@
"validation": null
},
{
- "_syncId": "8f4ba19f-d170-45c2-8dd2-7f7bd8497947",
- "action": "share",
- "collection": "events",
+ "_syncId": "1c7685a7-b396-43a3-9950-356760cf85ed",
+ "action": "read",
+ "collection": "ICBD",
"fields": [
"*"
],
@@ -1774,9 +1691,9 @@
"validation": null
},
{
- "_syncId": "b1bd7433-d623-4566-900b-a022e7080ae8",
+ "_syncId": "3191da8a-4b6b-472b-bc52-59ddf7385e1a",
"action": "read",
- "collection": "icbd_activities_icbd_speakers",
+ "collection": "events",
"fields": [
"*"
],
@@ -1786,9 +1703,9 @@
"validation": null
},
{
- "_syncId": "acfd3816-3ff3-475d-a51d-5a0f6e130295",
- "action": "create",
- "collection": "icbd_activities_registrations",
+ "_syncId": "4228e18a-2f03-4dc6-b80e-5d05e7f7dbb4",
+ "action": "read",
+ "collection": "icbd_activities",
"fields": [
"*"
],
@@ -1798,9 +1715,9 @@
"validation": null
},
{
- "_syncId": "6c33056c-09ef-4a51-a32a-a6c6c69be974",
- "action": "delete",
- "collection": "icbd_activities_registrations",
+ "_syncId": "451c65e9-5cf3-44ad-985b-5aa3cfc4098d",
+ "action": "update",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -1810,9 +1727,9 @@
"validation": null
},
{
- "_syncId": "76dfb176-88ff-4a9e-9436-acf18ec262cd",
+ "_syncId": "485eeb97-3a9f-459c-9214-1c279722c9f6",
"action": "read",
- "collection": "icbd_activities_registrations",
+ "collection": "registrations",
"fields": [
"*"
],
@@ -1822,9 +1739,9 @@
"validation": null
},
{
- "_syncId": "83d0f85a-8f9f-487f-b28a-4384bac4adba",
- "action": "share",
- "collection": "icbd_activities_registrations",
+ "_syncId": "4d60ddcf-f1ca-44e8-b452-c31c82a943c1",
+ "action": "read",
+ "collection": "icbd_phds",
"fields": [
"*"
],
@@ -1834,9 +1751,9 @@
"validation": null
},
{
- "_syncId": "1451efa2-810b-4c1e-a9c9-207b2e238f03",
+ "_syncId": "675c3a06-6eb7-4cbc-a7a2-29c4e2d503c2",
"action": "update",
- "collection": "icbd_activities_registrations",
+ "collection": "icbd_activities",
"fields": [
"*"
],
@@ -1846,9 +1763,9 @@
"validation": null
},
{
- "_syncId": "98f884c1-7893-4f0e-9eab-6be8ace11139",
- "action": "create",
- "collection": "icbd_activities_translations",
+ "_syncId": "6c33056c-09ef-4a51-a32a-a6c6c69be974",
+ "action": "delete",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -1858,9 +1775,9 @@
"validation": null
},
{
- "_syncId": "ac0fed75-521e-421d-8c2a-26efde155a4b",
- "action": "delete",
- "collection": "icbd_activities_translations",
+ "_syncId": "76dfb176-88ff-4a9e-9436-acf18ec262cd",
+ "action": "read",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -1870,9 +1787,9 @@
"validation": null
},
{
- "_syncId": "d4bfea2c-4f5b-4954-bf1a-e271feb46a97",
- "action": "read",
- "collection": "icbd_activities_translations",
+ "_syncId": "7ac3fbfa-79c1-4593-8224-a7e46941a2a7",
+ "action": "create",
+ "collection": "events",
"fields": [
"*"
],
@@ -1894,9 +1811,9 @@
"validation": null
},
{
- "_syncId": "451c65e9-5cf3-44ad-985b-5aa3cfc4098d",
- "action": "update",
- "collection": "icbd_activities_translations",
+ "_syncId": "83d0f85a-8f9f-487f-b28a-4384bac4adba",
+ "action": "share",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -1906,9 +1823,9 @@
"validation": null
},
{
- "_syncId": "b7c00e06-863d-4f59-a694-cc1e8add9b6b",
- "action": "create",
- "collection": "icbd_activities",
+ "_syncId": "8f4ba19f-d170-45c2-8dd2-7f7bd8497947",
+ "action": "share",
+ "collection": "events",
"fields": [
"*"
],
@@ -1918,9 +1835,9 @@
"validation": null
},
{
- "_syncId": "f8b84d1e-c0b9-4caa-be5b-6f55f5108833",
- "action": "delete",
- "collection": "icbd_activities",
+ "_syncId": "98f884c1-7893-4f0e-9eab-6be8ace11139",
+ "action": "create",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -1930,9 +1847,9 @@
"validation": null
},
{
- "_syncId": "4228e18a-2f03-4dc6-b80e-5d05e7f7dbb4",
- "action": "read",
- "collection": "icbd_activities",
+ "_syncId": "a7f37091-3c9f-47ab-a0b0-fb93f958e436",
+ "action": "delete",
+ "collection": "registrations",
"fields": [
"*"
],
@@ -1942,9 +1859,9 @@
"validation": null
},
{
- "_syncId": "199f198e-45f8-4227-9991-17738879daac",
- "action": "share",
- "collection": "icbd_activities",
+ "_syncId": "ac0fed75-521e-421d-8c2a-26efde155a4b",
+ "action": "delete",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -1954,9 +1871,9 @@
"validation": null
},
{
- "_syncId": "675c3a06-6eb7-4cbc-a7a2-29c4e2d503c2",
- "action": "update",
- "collection": "icbd_activities",
+ "_syncId": "acfd3816-3ff3-475d-a51d-5a0f6e130295",
+ "action": "create",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -1966,9 +1883,9 @@
"validation": null
},
{
- "_syncId": "e82e2506-a0f1-4e72-9862-b2592697244c",
- "action": "read",
- "collection": "ICBD_files",
+ "_syncId": "ae5ba32f-e5b8-4b9e-bcb8-222113ddc8a2",
+ "action": "update",
+ "collection": "registrations",
"fields": [
"*"
],
@@ -1978,9 +1895,9 @@
"validation": null
},
{
- "_syncId": "4d60ddcf-f1ca-44e8-b452-c31c82a943c1",
+ "_syncId": "b1bd7433-d623-4566-900b-a022e7080ae8",
"action": "read",
- "collection": "icbd_phds",
+ "collection": "icbd_activities_icbd_speakers",
"fields": [
"*"
],
@@ -1990,9 +1907,9 @@
"validation": null
},
{
- "_syncId": "e873a841-ac19-490e-87b6-9157941545cf",
- "action": "read",
- "collection": "icbd_speakers",
+ "_syncId": "b7c00e06-863d-4f59-a694-cc1e8add9b6b",
+ "action": "create",
+ "collection": "icbd_activities",
"fields": [
"*"
],
@@ -2002,9 +1919,9 @@
"validation": null
},
{
- "_syncId": "0838c140-4723-4120-aabf-6373c003d973",
+ "_syncId": "d4bfea2c-4f5b-4954-bf1a-e271feb46a97",
"action": "read",
- "collection": "ICBD_translations",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -2014,9 +1931,9 @@
"validation": null
},
{
- "_syncId": "1c7685a7-b396-43a3-9950-356760cf85ed",
- "action": "read",
- "collection": "ICBD",
+ "_syncId": "e1463b6f-b594-46d4-91ec-66333b6fa230",
+ "action": "share",
+ "collection": "registrations",
"fields": [
"*"
],
@@ -2038,9 +1955,9 @@
"validation": null
},
{
- "_syncId": "a7f37091-3c9f-47ab-a0b0-fb93f958e436",
- "action": "delete",
- "collection": "registrations",
+ "_syncId": "e82e2506-a0f1-4e72-9862-b2592697244c",
+ "action": "read",
+ "collection": "ICBD_files",
"fields": [
"*"
],
@@ -2050,9 +1967,9 @@
"validation": null
},
{
- "_syncId": "485eeb97-3a9f-459c-9214-1c279722c9f6",
+ "_syncId": "e873a841-ac19-490e-87b6-9157941545cf",
"action": "read",
- "collection": "registrations",
+ "collection": "icbd_speakers",
"fields": [
"*"
],
@@ -2062,9 +1979,9 @@
"validation": null
},
{
- "_syncId": "e1463b6f-b594-46d4-91ec-66333b6fa230",
- "action": "share",
- "collection": "registrations",
+ "_syncId": "edc7e878-70cb-449f-84c5-70f301eff054",
+ "action": "delete",
+ "collection": "events",
"fields": [
"*"
],
@@ -2074,9 +1991,9 @@
"validation": null
},
{
- "_syncId": "ae5ba32f-e5b8-4b9e-bcb8-222113ddc8a2",
- "action": "update",
- "collection": "registrations",
+ "_syncId": "f8b84d1e-c0b9-4caa-be5b-6f55f5108833",
+ "action": "delete",
+ "collection": "icbd_activities",
"fields": [
"*"
],
@@ -2086,9 +2003,9 @@
"validation": null
},
{
- "_syncId": "073e47a1-25ad-4c97-959f-db271bb72402",
+ "_syncId": "00a81d42-00fb-4256-af7c-c96e1b9ceeb9",
"action": "read",
- "collection": "commissions",
+ "collection": "news",
"fields": [
"*"
],
@@ -2098,40 +2015,40 @@
"validation": {}
},
{
- "_syncId": "7dfa1715-19d2-4bea-9c14-0e7ae61b4e23",
- "action": "share",
- "collection": "commissions",
+ "_syncId": "06a5edd7-d752-4b30-80ac-8093ecf07544",
+ "action": "delete",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "c8c9a626-b835-4411-a875-f97bed88408d",
- "action": "create",
- "collection": "directus_dashboards",
+ "_syncId": "073e47a1-25ad-4c97-959f-db271bb72402",
+ "action": "read",
+ "collection": "commissions",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "83157d82-606e-4ac7-b42d-bde05285b34d",
- "action": "delete",
- "collection": "directus_dashboards",
+ "_syncId": "08781246-fe7d-4fd7-9652-4310f408f6df",
+ "action": "create",
+ "collection": "news_commissions",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
"_syncId": "09c8bed8-8b63-47cf-af2a-330d8d21ec65",
@@ -2146,9 +2063,9 @@
"validation": null
},
{
- "_syncId": "91aafaa7-c115-48c7-9781-ed3d936f25f3",
+ "_syncId": "0cb2a8a2-d2e2-425d-857c-a650b3697ffe",
"action": "update",
- "collection": "directus_dashboards",
+ "collection": "directus_files",
"fields": [
"*"
],
@@ -2158,20 +2075,20 @@
"validation": null
},
{
- "_syncId": "e2cc79b0-6240-484e-8289-be7037337910",
- "action": "create",
- "collection": "directus_files",
+ "_syncId": "154c14ed-bb1a-437f-9da5-4c6bf04f707e",
+ "action": "read",
+ "collection": "languages",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "3315ea12-0a2a-4e89-870f-d45bebbfb3fa",
- "action": "delete",
+ "_syncId": "181512ab-45af-47cc-adbb-8aabaee2a813",
+ "action": "read",
"collection": "directus_files",
"fields": [
"*"
@@ -2182,77 +2099,96 @@
"validation": null
},
{
- "_syncId": "181512ab-45af-47cc-adbb-8aabaee2a813",
+ "_syncId": "18ac07c4-b28b-4a6e-acad-d2500385b035",
"action": "read",
- "collection": "directus_files",
+ "collection": "news_partners",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "0cb2a8a2-d2e2-425d-857c-a650b3697ffe",
- "action": "update",
- "collection": "directus_files",
+ "_syncId": "1b0f4ab9-e3dd-4f90-b3a9-00f961e1eefa",
+ "action": "read",
+ "collection": "news_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "8fe66155-3cef-4530-889a-353a9e9cd329",
- "action": "read",
- "collection": "directus_flows",
+ "_syncId": "1be2c442-9cd1-4d75-915b-aed4876c422b",
+ "action": "update",
+ "collection": "news_partners",
"fields": [
- "id",
- "status",
- "name",
- "icon",
- "color",
- "options",
- "trigger"
+ "*"
],
"permissions": {
- "trigger": {
- "_eq": "manual"
- }
+ "_and": [
+ {
+ "news_id": {
+ "status": {
+ "_eq": "draft"
+ }
+ }
+ }
+ ]
},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "af91a424-8c59-4310-948f-e1cb4d642976",
+ "_syncId": "2e7a6b05-b8f5-45de-9eaf-7d41ee1b28cd",
"action": "create",
- "collection": "directus_folders",
+ "collection": "news_partners",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "e5c9740a-f0e6-45ea-b169-2e583e43f758",
- "action": "delete",
- "collection": "directus_folders",
- "fields": null,
+ "_syncId": "3210b1d4-92fc-4cc9-be4e-e25619947fff",
+ "action": "create",
+ "collection": "news",
+ "fields": [
+ "id",
+ "slug",
+ "translations",
+ "commissions",
+ "partners",
+ "sort",
+ "user_created",
+ "date_created",
+ "date_updated",
+ "video_link"
+ ],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {
+ "_and": [
+ {
+ "status": {
+ "_eq": "draft"
+ }
+ }
+ ]
+ }
},
{
- "_syncId": "a520898b-ee61-44ac-9c32-51cb200b6c0e",
- "action": "read",
- "collection": "directus_folders",
+ "_syncId": "3315ea12-0a2a-4e89-870f-d45bebbfb3fa",
+ "action": "delete",
+ "collection": "directus_files",
"fields": [
"*"
],
@@ -2262,61 +2198,69 @@
"validation": null
},
{
- "_syncId": "73183b2a-3599-4926-888c-a01493a3f5e6",
- "action": "update",
- "collection": "directus_folders",
+ "_syncId": "3ff8f8e4-06dc-4808-9111-6f2bcfc7500a",
+ "action": "share",
+ "collection": "news_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "93d3226d-bcd6-4f3e-8fd9-7bbdfca5fdff",
+ "_syncId": "439446ec-1c9a-40e5-ba63-ef450d9539e1",
"action": "create",
- "collection": "directus_panels",
+ "collection": "news_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "06a5edd7-d752-4b30-80ac-8093ecf07544",
+ "_syncId": "4e2cf401-2cce-46fe-975a-8b429f87e1c3",
"action": "delete",
- "collection": "directus_panels",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "user_created": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
"validation": null
},
{
- "_syncId": "6cd13077-0dba-406b-ad53-de7c4a6b7fc8",
+ "_syncId": "5195a065-9c14-4cd3-9732-e983a2c805bf",
"action": "read",
- "collection": "directus_panels",
+ "collection": "news_commissions",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "a4b4bc58-6ad0-4a8f-821e-2ace6f8951f9",
+ "_syncId": "5aaa282f-a3c0-430c-bee9-00d53bab5685",
"action": "update",
- "collection": "directus_panels",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "user_created": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
"validation": null
@@ -2334,9 +2278,9 @@
"validation": null
},
{
- "_syncId": "82a7187a-71be-4562-af2c-3a1bec2916dd",
- "action": "create",
- "collection": "directus_shares",
+ "_syncId": "6cd13077-0dba-406b-ad53-de7c4a6b7fc8",
+ "action": "read",
+ "collection": "directus_panels",
"fields": [
"*"
],
@@ -2346,66 +2290,45 @@
"validation": null
},
{
- "_syncId": "4e2cf401-2cce-46fe-975a-8b429f87e1c3",
- "action": "delete",
- "collection": "directus_shares",
+ "_syncId": "73183b2a-3599-4926-888c-a01493a3f5e6",
+ "action": "update",
+ "collection": "directus_folders",
"fields": [
"*"
],
- "permissions": {
- "user_created": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
"validation": null
},
{
- "_syncId": "f4ba46c0-1480-4247-8ca7-3db64a808fb0",
- "action": "read",
- "collection": "directus_shares",
+ "_syncId": "7dfa1715-19d2-4bea-9c14-0e7ae61b4e23",
+ "action": "share",
+ "collection": "commissions",
"fields": [
"*"
],
- "permissions": {
- "_or": [
- {
- "role": {
- "_eq": "$CURRENT_ROLE"
- }
- },
- {
- "role": {
- "_null": true
- }
- }
- ]
- },
+ "permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "5aaa282f-a3c0-430c-bee9-00d53bab5685",
- "action": "update",
+ "_syncId": "82a7187a-71be-4562-af2c-3a1bec2916dd",
+ "action": "create",
"collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {
- "user_created": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
"validation": null
},
{
- "_syncId": "c90f0314-8dc1-4057-a2ae-11be7ae5f333",
- "action": "read",
- "collection": "directus_users",
+ "_syncId": "83157d82-606e-4ac7-b42d-bde05285b34d",
+ "action": "delete",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
@@ -2415,39 +2338,43 @@
"validation": null
},
{
- "_syncId": "b09d0041-401a-4367-b06b-46080e691a95",
+ "_syncId": "8afa9800-6570-49a5-9c6c-8c896b222e50",
+ "action": "share",
+ "collection": "news_partners",
+ "fields": [
+ "*"
+ ],
+ "permissions": {},
+ "policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
+ "presets": null,
+ "validation": {}
+ },
+ {
+ "_syncId": "8b04b2ec-a798-47cd-8f26-5c8ea77de503",
"action": "update",
- "collection": "directus_users",
+ "collection": "news_commissions",
"fields": [
- "first_name",
- "last_name",
- "email",
- "password",
- "location",
- "title",
- "description",
- "avatar",
- "language",
- "appearance",
- "theme_light",
- "theme_dark",
- "theme_light_overrides",
- "theme_dark_overrides",
- "tfa_secret"
+ "*"
],
"permissions": {
- "id": {
- "_eq": "$CURRENT_USER"
- }
+ "_and": [
+ {
+ "news_id": {
+ "status": {
+ "_eq": "draft"
+ }
+ }
+ }
+ ]
},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "154c14ed-bb1a-437f-9da5-4c6bf04f707e",
- "action": "read",
- "collection": "languages",
+ "_syncId": "8f2ac486-41de-4336-ae52-15e8bb8347e3",
+ "action": "share",
+ "collection": "news",
"fields": [
"*"
],
@@ -2457,28 +2384,50 @@
"validation": {}
},
{
- "_syncId": "08781246-fe7d-4fd7-9652-4310f408f6df",
- "action": "create",
- "collection": "news_commissions",
+ "_syncId": "8fe66155-3cef-4530-889a-353a9e9cd329",
+ "action": "read",
+ "collection": "directus_flows",
+ "fields": [
+ "id",
+ "status",
+ "name",
+ "icon",
+ "color",
+ "options",
+ "trigger"
+ ],
+ "permissions": {
+ "trigger": {
+ "_eq": "manual"
+ }
+ },
+ "policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
+ "presets": null,
+ "validation": null
+ },
+ {
+ "_syncId": "91aafaa7-c115-48c7-9781-ed3d936f25f3",
+ "action": "update",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "5195a065-9c14-4cd3-9732-e983a2c805bf",
- "action": "read",
- "collection": "news_commissions",
+ "_syncId": "93d3226d-bcd6-4f3e-8fd9-7bbdfca5fdff",
+ "action": "create",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
"_syncId": "96a58a2d-0a38-4bbd-80fd-dfba087396de",
@@ -2493,89 +2442,108 @@
"validation": {}
},
{
- "_syncId": "8b04b2ec-a798-47cd-8f26-5c8ea77de503",
+ "_syncId": "99497a74-c4d8-492c-a007-fb6f3c9a4646",
"action": "update",
- "collection": "news_commissions",
+ "collection": "news",
"fields": [
- "*"
+ "slug",
+ "partners",
+ "commissions",
+ "translations",
+ "video_link",
+ "date_updated"
],
"permissions": {
"_and": [
{
- "news_id": {
- "status": {
- "_eq": "draft"
- }
+ "status": {
+ "_eq": "draft"
}
}
]
},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": {
+ "_and": [
+ {
+ "status": {
+ "_eq": "draft"
+ }
+ }
+ ]
+ }
},
{
- "_syncId": "2e7a6b05-b8f5-45de-9eaf-7d41ee1b28cd",
- "action": "create",
- "collection": "news_partners",
+ "_syncId": "a4b4bc58-6ad0-4a8f-821e-2ace6f8951f9",
+ "action": "update",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "18ac07c4-b28b-4a6e-acad-d2500385b035",
+ "_syncId": "a520898b-ee61-44ac-9c32-51cb200b6c0e",
"action": "read",
- "collection": "news_partners",
+ "collection": "directus_folders",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "8afa9800-6570-49a5-9c6c-8c896b222e50",
- "action": "share",
- "collection": "news_partners",
+ "_syncId": "af91a424-8c59-4310-948f-e1cb4d642976",
+ "action": "create",
+ "collection": "directus_folders",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "1be2c442-9cd1-4d75-915b-aed4876c422b",
+ "_syncId": "b09d0041-401a-4367-b06b-46080e691a95",
"action": "update",
- "collection": "news_partners",
+ "collection": "directus_users",
"fields": [
- "*"
+ "first_name",
+ "last_name",
+ "email",
+ "password",
+ "location",
+ "title",
+ "description",
+ "avatar",
+ "language",
+ "appearance",
+ "theme_light",
+ "theme_dark",
+ "theme_light_overrides",
+ "theme_dark_overrides",
+ "tfa_secret"
],
"permissions": {
- "_and": [
- {
- "news_id": {
- "status": {
- "_eq": "draft"
- }
- }
- }
- ]
+ "id": {
+ "_eq": "$CURRENT_USER"
+ }
},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "439446ec-1c9a-40e5-ba63-ef450d9539e1",
- "action": "create",
- "collection": "news_translations",
+ "_syncId": "c3d31e6b-1d99-4489-95f1-6b06de7c3a74",
+ "action": "read",
+ "collection": "partners",
"fields": [
"*"
],
@@ -2585,8 +2553,8 @@
"validation": {}
},
{
- "_syncId": "1b0f4ab9-e3dd-4f90-b3a9-00f961e1eefa",
- "action": "read",
+ "_syncId": "c7fddfa4-f95f-422d-b803-0a006d4d581e",
+ "action": "update",
"collection": "news_translations",
"fields": [
"*"
@@ -2597,62 +2565,45 @@
"validation": {}
},
{
- "_syncId": "3ff8f8e4-06dc-4808-9111-6f2bcfc7500a",
- "action": "share",
- "collection": "news_translations",
+ "_syncId": "c8c9a626-b835-4411-a875-f97bed88408d",
+ "action": "create",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "c7fddfa4-f95f-422d-b803-0a006d4d581e",
- "action": "update",
- "collection": "news_translations",
+ "_syncId": "c90f0314-8dc1-4057-a2ae-11be7ae5f333",
+ "action": "read",
+ "collection": "directus_users",
"fields": [
"*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "3210b1d4-92fc-4cc9-be4e-e25619947fff",
+ "_syncId": "e2cc79b0-6240-484e-8289-be7037337910",
"action": "create",
- "collection": "news",
+ "collection": "directus_files",
"fields": [
- "id",
- "slug",
- "translations",
- "commissions",
- "partners",
- "sort",
- "user_created",
- "date_created",
- "date_updated",
- "video_link"
+ "*"
],
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {
- "_and": [
- {
- "status": {
- "_eq": "draft"
- }
- }
- ]
- }
+ "validation": null
},
{
- "_syncId": "00a81d42-00fb-4256-af7c-c96e1b9ceeb9",
- "action": "read",
- "collection": "news",
+ "_syncId": "e56a0f47-9635-4ffb-b9b9-cb8d6860fcfa",
+ "action": "share",
+ "collection": "partners",
"fields": [
"*"
],
@@ -2662,78 +2613,139 @@
"validation": {}
},
{
- "_syncId": "8f2ac486-41de-4336-ae52-15e8bb8347e3",
- "action": "share",
- "collection": "news",
- "fields": [
- "*"
- ],
+ "_syncId": "e5c9740a-f0e6-45ea-b169-2e583e43f758",
+ "action": "delete",
+ "collection": "directus_folders",
+ "fields": null,
"permissions": {},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "99497a74-c4d8-492c-a007-fb6f3c9a4646",
- "action": "update",
- "collection": "news",
+ "_syncId": "f4ba46c0-1480-4247-8ca7-3db64a808fb0",
+ "action": "read",
+ "collection": "directus_shares",
"fields": [
- "slug",
- "partners",
- "commissions",
- "translations",
- "video_link",
- "date_updated"
+ "*"
],
"permissions": {
- "_and": [
+ "_or": [
{
- "status": {
- "_eq": "draft"
+ "role": {
+ "_eq": "$CURRENT_ROLE"
+ }
+ },
+ {
+ "role": {
+ "_null": true
}
}
]
},
"policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
"presets": null,
- "validation": {
- "_and": [
- {
- "status": {
- "_eq": "draft"
- }
- }
- ]
- }
+ "validation": null
},
{
- "_syncId": "c3d31e6b-1d99-4489-95f1-6b06de7c3a74",
+ "_syncId": "35082efc-61f9-4590-88fa-8f713f59b8e1",
"action": "read",
- "collection": "partners",
+ "collection": "directus_folders",
"fields": [
"*"
],
- "permissions": {},
- "policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
+ "permissions": null,
+ "policy": "_sync_default_public_policy",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "e56a0f47-9635-4ffb-b9b9-cb8d6860fcfa",
- "action": "share",
- "collection": "partners",
+ "_syncId": "acccdad0-5e58-46a6-b3f6-4c0bba96f1c5",
+ "action": "read",
+ "collection": "directus_files",
+ "fields": [
+ "id",
+ "title",
+ "tags",
+ "description",
+ "location",
+ "storage",
+ "focal_point_x",
+ "focal_point_divider",
+ "filename_disk",
+ "focal_point_y",
+ "storage_divider",
+ "filename_download",
+ "type",
+ "metadata",
+ "filesize",
+ "modified_by",
+ "width",
+ "uploaded_on",
+ "embed",
+ "modified_on",
+ "uploaded_by",
+ "folder",
+ "height",
+ "charset",
+ "$thumbnail",
+ "duration"
+ ],
+ "permissions": {
+ "_and": [
+ {
+ "_or": [
+ {
+ "folder": {
+ "name": {
+ "_eq": "public"
+ }
+ }
+ },
+ {
+ "folder": {
+ "parent": {
+ "name": {
+ "_eq": "public"
+ }
+ }
+ }
+ },
+ {
+ "folder": {
+ "parent": {
+ "parent": {
+ "name": {
+ "_eq": "public"
+ }
+ }
+ }
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "policy": "_sync_default_public_policy",
+ "presets": null,
+ "validation": null
+ },
+ {
+ "_syncId": "08db4df9-dac1-498d-9230-bbcd43d2446b",
+ "action": "read",
+ "collection": "game_star_social_links",
"fields": [
"*"
],
- "permissions": {},
- "policy": "8d7efa31-b9a9-40cb-8797-7af785c1f680",
+ "permissions": null,
+ "policy": "b4a65686-320b-4a32-85f0-aa255327369a",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "9a42bfde-fa4b-41f5-a599-01278f7e9aaa",
+ "_syncId": "19e265af-9660-41ce-bdfe-8733f1096336",
"action": "create",
- "collection": "game_star_articles_translations",
+ "collection": "game_star_events",
"fields": [
"*"
],
@@ -2743,9 +2755,9 @@
"validation": null
},
{
- "_syncId": "32da2a28-66b3-4b27-b6d7-cca9a0f29b7e",
+ "_syncId": "1ad3e5f5-8550-46c2-ad1e-682d04f8cb07",
"action": "delete",
- "collection": "game_star_articles_translations",
+ "collection": "game_star_events_translations",
"fields": [
"*"
],
@@ -2755,9 +2767,9 @@
"validation": null
},
{
- "_syncId": "9355d5c1-e3de-4823-bc4b-4ffba5563341",
+ "_syncId": "260d7398-e628-42b4-abc3-f5812820c246",
"action": "read",
- "collection": "game_star_articles_translations",
+ "collection": "game_star_events_translations",
"fields": [
"*"
],
@@ -2767,8 +2779,8 @@
"validation": null
},
{
- "_syncId": "cff85463-b83e-405d-ac2a-9d3b94843ebd",
- "action": "update",
+ "_syncId": "32da2a28-66b3-4b27-b6d7-cca9a0f29b7e",
+ "action": "delete",
"collection": "game_star_articles_translations",
"fields": [
"*"
@@ -2779,9 +2791,9 @@
"validation": null
},
{
- "_syncId": "79c72aa0-9c86-4fb6-8bc7-132bc8bd5b49",
- "action": "create",
- "collection": "game_star_articles",
+ "_syncId": "3c32ff84-cad7-4cc9-b9a5-0ab335031f81",
+ "action": "update",
+ "collection": "game_star_events_translations",
"fields": [
"*"
],
@@ -2791,8 +2803,8 @@
"validation": null
},
{
- "_syncId": "7048130d-bbe4-4013-ab91-785250cf7120",
- "action": "delete",
+ "_syncId": "41c83f7c-ad87-4e3b-9d6e-45927e7d8dfe",
+ "action": "read",
"collection": "game_star_articles",
"fields": [
"*"
@@ -2803,9 +2815,9 @@
"validation": null
},
{
- "_syncId": "41c83f7c-ad87-4e3b-9d6e-45927e7d8dfe",
- "action": "read",
- "collection": "game_star_articles",
+ "_syncId": "492a7cb9-61d3-420b-99aa-5a7a6c13eec7",
+ "action": "update",
+ "collection": "game_star_projects_translations",
"fields": [
"*"
],
@@ -2815,9 +2827,9 @@
"validation": null
},
{
- "_syncId": "777dad4c-6807-4f33-b979-c510996daae0",
- "action": "update",
- "collection": "game_star_articles",
+ "_syncId": "4bb760b7-04f9-422d-90dd-48a4d19274e0",
+ "action": "read",
+ "collection": "game_star_projects_translations",
"fields": [
"*"
],
@@ -2827,9 +2839,9 @@
"validation": null
},
{
- "_syncId": "53d7553f-2f61-449e-b6bc-d0f8d828b081",
+ "_syncId": "50ebd7eb-16ea-4adb-8676-82ba856c1f02",
"action": "create",
- "collection": "game_star_events_translations",
+ "collection": "game_star_projects_translations",
"fields": [
"*"
],
@@ -2839,9 +2851,9 @@
"validation": null
},
{
- "_syncId": "1ad3e5f5-8550-46c2-ad1e-682d04f8cb07",
- "action": "delete",
- "collection": "game_star_events_translations",
+ "_syncId": "528a0862-1dde-4d68-a2b6-a196dd32077a",
+ "action": "read",
+ "collection": "game_star_events",
"fields": [
"*"
],
@@ -2851,8 +2863,8 @@
"validation": null
},
{
- "_syncId": "260d7398-e628-42b4-abc3-f5812820c246",
- "action": "read",
+ "_syncId": "53d7553f-2f61-449e-b6bc-d0f8d828b081",
+ "action": "create",
"collection": "game_star_events_translations",
"fields": [
"*"
@@ -2863,9 +2875,9 @@
"validation": null
},
{
- "_syncId": "3c32ff84-cad7-4cc9-b9a5-0ab335031f81",
- "action": "update",
- "collection": "game_star_events_translations",
+ "_syncId": "6253fa9b-9f2a-4e3e-bab4-c1837386fa4a",
+ "action": "delete",
+ "collection": "game_star_events",
"fields": [
"*"
],
@@ -2875,9 +2887,9 @@
"validation": null
},
{
- "_syncId": "19e265af-9660-41ce-bdfe-8733f1096336",
+ "_syncId": "6a263585-934a-497f-b8fd-14e7f3ef543b",
"action": "create",
- "collection": "game_star_events",
+ "collection": "game_star_projects",
"fields": [
"*"
],
@@ -2887,9 +2899,9 @@
"validation": null
},
{
- "_syncId": "6253fa9b-9f2a-4e3e-bab4-c1837386fa4a",
+ "_syncId": "7048130d-bbe4-4013-ab91-785250cf7120",
"action": "delete",
- "collection": "game_star_events",
+ "collection": "game_star_articles",
"fields": [
"*"
],
@@ -2899,9 +2911,9 @@
"validation": null
},
{
- "_syncId": "528a0862-1dde-4d68-a2b6-a196dd32077a",
- "action": "read",
- "collection": "game_star_events",
+ "_syncId": "7428e47c-06a6-4f35-8abf-e63d20071cb5",
+ "action": "update",
+ "collection": "game_star_translations",
"fields": [
"*"
],
@@ -2911,9 +2923,9 @@
"validation": null
},
{
- "_syncId": "8d366cf6-b7b9-4a45-b218-b8c4f9a361ef",
+ "_syncId": "777dad4c-6807-4f33-b979-c510996daae0",
"action": "update",
- "collection": "game_star_events",
+ "collection": "game_star_articles",
"fields": [
"*"
],
@@ -2923,9 +2935,9 @@
"validation": null
},
{
- "_syncId": "50ebd7eb-16ea-4adb-8676-82ba856c1f02",
+ "_syncId": "79c72aa0-9c86-4fb6-8bc7-132bc8bd5b49",
"action": "create",
- "collection": "game_star_projects_translations",
+ "collection": "game_star_articles",
"fields": [
"*"
],
@@ -2934,10 +2946,10 @@
"presets": null,
"validation": null
},
- {
- "_syncId": "ed3928fc-0ef4-426b-862e-1400f0a551c1",
- "action": "delete",
- "collection": "game_star_projects_translations",
+ {
+ "_syncId": "7a41d423-37eb-4e52-bbe0-628b1218b188",
+ "action": "create",
+ "collection": "game_star_social_links",
"fields": [
"*"
],
@@ -2947,9 +2959,9 @@
"validation": null
},
{
- "_syncId": "4bb760b7-04f9-422d-90dd-48a4d19274e0",
- "action": "read",
- "collection": "game_star_projects_translations",
+ "_syncId": "8d366cf6-b7b9-4a45-b218-b8c4f9a361ef",
+ "action": "update",
+ "collection": "game_star_events",
"fields": [
"*"
],
@@ -2959,9 +2971,9 @@
"validation": null
},
{
- "_syncId": "492a7cb9-61d3-420b-99aa-5a7a6c13eec7",
- "action": "update",
- "collection": "game_star_projects_translations",
+ "_syncId": "8daab1d1-157e-49de-8208-c862ad29bc9f",
+ "action": "delete",
+ "collection": "game_star_projects",
"fields": [
"*"
],
@@ -2971,9 +2983,9 @@
"validation": null
},
{
- "_syncId": "6a263585-934a-497f-b8fd-14e7f3ef543b",
- "action": "create",
- "collection": "game_star_projects",
+ "_syncId": "9355d5c1-e3de-4823-bc4b-4ffba5563341",
+ "action": "read",
+ "collection": "game_star_articles_translations",
"fields": [
"*"
],
@@ -2983,9 +2995,9 @@
"validation": null
},
{
- "_syncId": "8daab1d1-157e-49de-8208-c862ad29bc9f",
- "action": "delete",
- "collection": "game_star_projects",
+ "_syncId": "94031a95-f5de-4b3b-8694-037f9de63806",
+ "action": "update",
+ "collection": "game_star",
"fields": [
"*"
],
@@ -2995,9 +3007,9 @@
"validation": null
},
{
- "_syncId": "cc8543fd-f375-430f-84dc-703642d8aacd",
- "action": "read",
- "collection": "game_star_projects",
+ "_syncId": "9a42bfde-fa4b-41f5-a599-01278f7e9aaa",
+ "action": "create",
+ "collection": "game_star_articles_translations",
"fields": [
"*"
],
@@ -3019,9 +3031,9 @@
"validation": null
},
{
- "_syncId": "7a41d423-37eb-4e52-bbe0-628b1218b188",
+ "_syncId": "b8c0a1d8-3e7f-42fc-a392-68fea9235c5e",
"action": "create",
- "collection": "game_star_social_links",
+ "collection": "game_star_translations",
"fields": [
"*"
],
@@ -3031,9 +3043,9 @@
"validation": null
},
{
- "_syncId": "c75cd888-efc4-4785-bdfe-d3dbce93c8d6",
+ "_syncId": "bdd37ade-59eb-4ff4-ba00-af6b57a11a3c",
"action": "delete",
- "collection": "game_star_social_links",
+ "collection": "game_star",
"fields": [
"*"
],
@@ -3043,8 +3055,8 @@
"validation": null
},
{
- "_syncId": "08db4df9-dac1-498d-9230-bbcd43d2446b",
- "action": "read",
+ "_syncId": "c75cd888-efc4-4785-bdfe-d3dbce93c8d6",
+ "action": "delete",
"collection": "game_star_social_links",
"fields": [
"*"
@@ -3055,9 +3067,9 @@
"validation": null
},
{
- "_syncId": "e3aa44e0-c317-457b-8f9d-3d9d83e8fa62",
- "action": "update",
- "collection": "game_star_social_links",
+ "_syncId": "cc8543fd-f375-430f-84dc-703642d8aacd",
+ "action": "read",
+ "collection": "game_star_projects",
"fields": [
"*"
],
@@ -3067,9 +3079,9 @@
"validation": null
},
{
- "_syncId": "b8c0a1d8-3e7f-42fc-a392-68fea9235c5e",
- "action": "create",
- "collection": "game_star_translations",
+ "_syncId": "cff85463-b83e-405d-ac2a-9d3b94843ebd",
+ "action": "update",
+ "collection": "game_star_articles_translations",
"fields": [
"*"
],
@@ -3079,9 +3091,9 @@
"validation": null
},
{
- "_syncId": "e8b21bee-e38b-4cca-9ca7-fbdf0402545a",
- "action": "delete",
- "collection": "game_star_translations",
+ "_syncId": "e3aa44e0-c317-457b-8f9d-3d9d83e8fa62",
+ "action": "update",
+ "collection": "game_star_social_links",
"fields": [
"*"
],
@@ -3091,9 +3103,9 @@
"validation": null
},
{
- "_syncId": "f2a4ca28-4b8a-4eff-95b9-49bdf637fe55",
+ "_syncId": "e55fabf5-af75-4396-b63e-33e8d1fde93f",
"action": "read",
- "collection": "game_star_translations",
+ "collection": "game_star",
"fields": [
"*"
],
@@ -3103,8 +3115,8 @@
"validation": null
},
{
- "_syncId": "7428e47c-06a6-4f35-8abf-e63d20071cb5",
- "action": "update",
+ "_syncId": "e8b21bee-e38b-4cca-9ca7-fbdf0402545a",
+ "action": "delete",
"collection": "game_star_translations",
"fields": [
"*"
@@ -3115,9 +3127,9 @@
"validation": null
},
{
- "_syncId": "bdd37ade-59eb-4ff4-ba00-af6b57a11a3c",
+ "_syncId": "ed3928fc-0ef4-426b-862e-1400f0a551c1",
"action": "delete",
- "collection": "game_star",
+ "collection": "game_star_projects_translations",
"fields": [
"*"
],
@@ -3127,9 +3139,9 @@
"validation": null
},
{
- "_syncId": "e55fabf5-af75-4396-b63e-33e8d1fde93f",
+ "_syncId": "f2a4ca28-4b8a-4eff-95b9-49bdf637fe55",
"action": "read",
- "collection": "game_star",
+ "collection": "game_star_translations",
"fields": [
"*"
],
@@ -3139,45 +3151,45 @@
"validation": null
},
{
- "_syncId": "94031a95-f5de-4b3b-8694-037f9de63806",
- "action": "update",
- "collection": "game_star",
+ "_syncId": "032fa28f-8509-4e15-a082-ccbe2adfa027",
+ "action": "create",
+ "collection": "ICBD_files",
"fields": [
"*"
],
"permissions": null,
- "policy": "b4a65686-320b-4a32-85f0-aa255327369a",
+ "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "99327f4c-539f-4701-9914-d6840df13821",
- "action": "create",
- "collection": "artists",
+ "_syncId": "0365b6c6-1a57-45c6-959d-7f6f71175268",
+ "action": "share",
+ "collection": "news_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "5cee605b-8f60-49aa-8b52-5fa66a8534b2",
- "action": "delete",
- "collection": "artists",
+ "_syncId": "03f6a083-4c27-4c25-97e3-b7bacc5f5054",
+ "action": "update",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "7b5cd8db-8245-451e-9f6a-c7f5b7581d4f",
- "action": "read",
- "collection": "artists",
+ "_syncId": "04168a97-3f9d-490b-811e-d38bd83b4c40",
+ "action": "create",
+ "collection": "subsonic_translations",
"fields": [
"*"
],
@@ -3187,21 +3199,21 @@
"validation": null
},
{
- "_syncId": "cbd8c676-91c9-4cef-b839-d5ad87907d02",
- "action": "share",
- "collection": "artists",
+ "_syncId": "0495ca97-1661-4888-bdb2-5fd05ffc4fbc",
+ "action": "update",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "c2f11f03-e1b6-40f2-aaa9-6b2e94711fe8",
- "action": "update",
- "collection": "artists",
+ "_syncId": "055bc545-cd1a-43d5-9a80-7813bd529d24",
+ "action": "create",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -3211,21 +3223,21 @@
"validation": null
},
{
- "_syncId": "24cf96fb-67dd-44c1-b37a-d2efa21f5335",
- "action": "create",
- "collection": "association_memberships_translations",
+ "_syncId": "06414ca3-4c6d-4820-a296-c3de5773c1d2",
+ "action": "share",
+ "collection": "subsonic_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "aa0cdf43-2cf3-4ae0-b55e-25289f0f52cb",
- "action": "delete",
- "collection": "association_memberships_translations",
+ "_syncId": "06e872f1-172f-4d64-8368-65a4b1cb7ef3",
+ "action": "share",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
@@ -3235,9 +3247,9 @@
"validation": {}
},
{
- "_syncId": "dc8ed8dc-84d6-4037-9021-daf5e1336a6f",
- "action": "read",
- "collection": "association_memberships_translations",
+ "_syncId": "07c1c812-1c00-4ce1-ab5d-95a4c6ac92dc",
+ "action": "share",
+ "collection": "social_links",
"fields": [
"*"
],
@@ -3247,9 +3259,9 @@
"validation": {}
},
{
- "_syncId": "aa931339-0f3b-437c-9053-62adf0ba0663",
+ "_syncId": "0b2d0252-2ce1-48c0-86ef-acad59abaf03",
"action": "share",
- "collection": "association_memberships_translations",
+ "collection": "association_partners",
"fields": [
"*"
],
@@ -3259,57 +3271,61 @@
"validation": {}
},
{
- "_syncId": "571ff113-a0e6-4dca-97d1-45fb7456ab0a",
+ "_syncId": "0b321574-75bf-4d4e-a240-c645b9e110a6",
"action": "update",
- "collection": "association_memberships_translations",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "user_created": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "85f69341-99c8-4c29-a5e3-9f56b69f67c9",
- "action": "create",
- "collection": "association_memberships",
+ "_syncId": "0bf3e77d-f635-436b-8eca-b0875ac22164",
+ "action": "share",
+ "collection": "icbd_phds",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "422184f4-b1f7-4464-a46c-53fd4be71d33",
- "action": "delete",
- "collection": "association_memberships",
+ "_syncId": "0c05a067-c7c8-4ae8-a2be-57931f89e474",
+ "action": "create",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "8ea8f916-1062-45be-9c1f-b8d06dea4134",
- "action": "read",
- "collection": "association_memberships",
+ "_syncId": "0ef804c7-646e-42cb-be35-8bd8bed6d6cc",
+ "action": "delete",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "87c6d9a5-06bd-4b47-bcd5-15a0e09ab91c",
- "action": "share",
- "collection": "association_memberships",
+ "_syncId": "11c31165-10e9-49ee-be0f-c9926a551b68",
+ "action": "read",
+ "collection": "news",
"fields": [
"*"
],
@@ -3319,33 +3335,33 @@
"validation": {}
},
{
- "_syncId": "c0c37172-7468-4615-b439-1aef2c5a41cb",
+ "_syncId": "174aec07-4899-4fe5-9fd7-87aec42a70e7",
"action": "update",
- "collection": "association_memberships",
+ "collection": "directus_folders",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "25644a07-50ef-44f9-a705-fa14902cfac2",
- "action": "create",
- "collection": "association_partners",
+ "_syncId": "193502e0-80c0-4d11-a0be-1a6f506ce55b",
+ "action": "read",
+ "collection": "ICBD_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "e835f3f9-3637-47c5-8ee2-0b2d7b1d341b",
- "action": "delete",
- "collection": "association_partners",
+ "_syncId": "1a2cfa65-8f98-4f79-b402-762581c032f4",
+ "action": "update",
+ "collection": "commission_memberships",
"fields": [
"*"
],
@@ -3355,9 +3371,9 @@
"validation": {}
},
{
- "_syncId": "99730f4b-b394-45d7-86ee-b5195c259f06",
- "action": "read",
- "collection": "association_partners",
+ "_syncId": "1a5cf540-b48f-48dc-83a0-db509ec42753",
+ "action": "delete",
+ "collection": "association_public_files",
"fields": [
"*"
],
@@ -3367,33 +3383,33 @@
"validation": {}
},
{
- "_syncId": "0b2d0252-2ce1-48c0-86ef-acad59abaf03",
- "action": "share",
- "collection": "association_partners",
+ "_syncId": "1ac71691-5cf9-46f7-99de-28b43e91a40a",
+ "action": "create",
+ "collection": "save_the_date",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "28db6b80-3d14-4ef0-ac57-790478855007",
- "action": "update",
- "collection": "association_partners",
+ "_syncId": "1b21a2cf-4df5-4509-b03d-5a7743139bcd",
+ "action": "read",
+ "collection": "ICBD_files",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "66a9b407-6b19-4d70-805b-c48964ee35cd",
- "action": "create",
- "collection": "association_poles_translations",
+ "_syncId": "1cb8a53e-8bfc-4373-883a-a8ade16b99b9",
+ "action": "share",
+ "collection": "languages",
"fields": [
"*"
],
@@ -3403,45 +3419,45 @@
"validation": {}
},
{
- "_syncId": "7005a9a0-e7de-4f30-a5a6-6b0058059f1f",
- "action": "delete",
- "collection": "association_poles_translations",
+ "_syncId": "1cc4bea4-6408-43e2-80d9-d9556fe9b186",
+ "action": "read",
+ "collection": "subsonic_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "c3447000-2da9-45df-8b53-b13fcb561103",
- "action": "read",
- "collection": "association_poles_translations",
+ "_syncId": "1f6468ef-ae3f-452c-af38-4fa0cd235581",
+ "action": "update",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "d0f87698-2aad-4f43-be07-5e0d0652a11a",
- "action": "share",
- "collection": "association_poles_translations",
+ "_syncId": "1f9ee40f-b0f0-49b9-b662-8600dda30b67",
+ "action": "update",
+ "collection": "ICBD_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "89eeca22-260b-415e-a337-aa0894ae9dff",
- "action": "update",
- "collection": "association_poles_translations",
+ "_syncId": "221ce899-c739-4074-9d84-11763bb6977c",
+ "action": "create",
+ "collection": "association_public_files",
"fields": [
"*"
],
@@ -3451,21 +3467,21 @@
"validation": {}
},
{
- "_syncId": "70461d48-3ce4-4692-a284-92e815025311",
- "action": "create",
- "collection": "association_poles",
+ "_syncId": "243252ce-7ea1-4194-bf20-d2fe99831b96",
+ "action": "delete",
+ "collection": "subsonic_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "81f35cdb-6aae-4c19-a954-8756bb5d1de7",
- "action": "delete",
- "collection": "association_poles",
+ "_syncId": "24cf96fb-67dd-44c1-b37a-d2efa21f5335",
+ "action": "create",
+ "collection": "association_memberships_translations",
"fields": [
"*"
],
@@ -3475,9 +3491,9 @@
"validation": {}
},
{
- "_syncId": "aef59dc0-6543-4f54-99ae-8e454f956950",
- "action": "read",
- "collection": "association_poles",
+ "_syncId": "25644a07-50ef-44f9-a705-fa14902cfac2",
+ "action": "create",
+ "collection": "association_partners",
"fields": [
"*"
],
@@ -3487,9 +3503,9 @@
"validation": {}
},
{
- "_syncId": "698c98a1-899c-4f6b-bf20-476049d8c274",
+ "_syncId": "25718a32-471a-4437-a7d3-db944c34114e",
"action": "share",
- "collection": "association_poles",
+ "collection": "association_public_files",
"fields": [
"*"
],
@@ -3499,9 +3515,9 @@
"validation": {}
},
{
- "_syncId": "3b465402-ae72-457b-a0d0-84d90996b9d0",
+ "_syncId": "25f7394f-1803-4952-8b82-fe0cab65945f",
"action": "update",
- "collection": "association_poles",
+ "collection": "languages",
"fields": [
"*"
],
@@ -3511,33 +3527,33 @@
"validation": {}
},
{
- "_syncId": "8af838b6-fe7f-4aa9-b7f2-e1693f8ab39b",
- "action": "create",
- "collection": "association_public_files_translations",
+ "_syncId": "26cc9979-7e2e-4b9b-b4fd-7007160d8d71",
+ "action": "read",
+ "collection": "icbd_activities",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "785a1d96-c2bc-4a30-9ce1-9aafe8c4c08d",
- "action": "delete",
- "collection": "association_public_files_translations",
+ "_syncId": "26ef3c0e-0d10-4786-8ace-2239d5ebbb23",
+ "action": "share",
+ "collection": "save_the_date",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "7cd65181-7a3f-4227-bb2e-8b36dfd69822",
+ "_syncId": "27651560-4bc6-4d89-9fdc-608f368f9a76",
"action": "read",
- "collection": "association_public_files_translations",
+ "collection": "news_commissions",
"fields": [
"*"
],
@@ -3547,33 +3563,33 @@
"validation": {}
},
{
- "_syncId": "66cde994-4c7d-4444-835d-08d9813045bb",
- "action": "share",
- "collection": "association_public_files_translations",
+ "_syncId": "27e92324-2c7e-4015-bcef-8f0b2b712a27",
+ "action": "create",
+ "collection": "icbd_phds",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "d763fe41-f928-4e16-957d-bd6e0961fdc3",
+ "_syncId": "283dec8e-0881-43c6-9a88-8b0c578f23f2",
"action": "update",
- "collection": "association_public_files_translations",
+ "collection": "ICBD_files",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "221ce899-c739-4074-9d84-11763bb6977c",
- "action": "create",
- "collection": "association_public_files",
+ "_syncId": "28db6b80-3d14-4ef0-ac57-790478855007",
+ "action": "update",
+ "collection": "association_partners",
"fields": [
"*"
],
@@ -3583,9 +3599,9 @@
"validation": {}
},
{
- "_syncId": "1a5cf540-b48f-48dc-83a0-db509ec42753",
- "action": "delete",
- "collection": "association_public_files",
+ "_syncId": "2a87aad6-720c-442c-9009-89917a68bf4b",
+ "action": "update",
+ "collection": "news_partners",
"fields": [
"*"
],
@@ -3595,9 +3611,9 @@
"validation": {}
},
{
- "_syncId": "d987e4d7-c842-4da1-811e-1c7ff5337b81",
+ "_syncId": "2cb91856-df6f-4bdf-86a6-aaf64bb4e055",
"action": "read",
- "collection": "association_public_files",
+ "collection": "commission_memberships",
"fields": [
"*"
],
@@ -3607,9 +3623,9 @@
"validation": {}
},
{
- "_syncId": "25718a32-471a-4437-a7d3-db944c34114e",
- "action": "share",
- "collection": "association_public_files",
+ "_syncId": "307fb5c9-8867-4fec-a6ba-515a6797d298",
+ "action": "update",
+ "collection": "news_translations",
"fields": [
"*"
],
@@ -3619,69 +3635,82 @@
"validation": {}
},
{
- "_syncId": "ec8b62d1-4c25-470c-937c-73e02ce1a010",
- "action": "update",
- "collection": "association_public_files",
+ "_syncId": "313840c1-9516-4531-9135-0708f0928d1e",
+ "action": "create",
+ "collection": "directus_shares",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "bc05a84d-372d-4caa-aca2-2719f3888b04",
- "action": "create",
- "collection": "association_social_links",
+ "_syncId": "330a99e8-b3e9-46e9-aa1d-81b3f7b308b2",
+ "action": "update",
+ "collection": "events",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "b5d5e63d-07c6-4b1f-87b8-671f52b7dc12",
+ "_syncId": "3384a58a-8ee5-43e2-bd52-35ad29f6204d",
"action": "delete",
- "collection": "association_social_links",
+ "collection": "save_the_date_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "5c31661f-2347-42ce-8445-cbc6084ebd80",
+ "_syncId": "375d733c-83f3-48f3-bdd4-4d9f192fa9cb",
"action": "read",
- "collection": "association_social_links",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "_or": [
+ {
+ "role": {
+ "_eq": "$CURRENT_ROLE"
+ }
+ },
+ {
+ "role": {
+ "_null": true
+ }
+ }
+ ]
+ },
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "7219647b-7176-4240-b8a4-1881353ced85",
- "action": "share",
- "collection": "association_social_links",
+ "_syncId": "37a15cf8-bf47-480c-b048-942b9e5f468e",
+ "action": "delete",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "5c9bd805-0ea6-4e20-9476-2f74bb038fc8",
+ "_syncId": "37f33e5d-55f3-4b47-8c6b-9c220cba7788",
"action": "update",
- "collection": "association_social_links",
+ "collection": "partners",
"fields": [
"*"
],
@@ -3691,9 +3720,9 @@
"validation": {}
},
{
- "_syncId": "7d567781-b078-4e21-91f9-f9d1f83f8553",
- "action": "create",
- "collection": "association_translations",
+ "_syncId": "38ba836d-cb13-4db9-8608-2858692c54a5",
+ "action": "update",
+ "collection": "commissions_translations",
"fields": [
"*"
],
@@ -3703,9 +3732,9 @@
"validation": {}
},
{
- "_syncId": "754eb744-6c51-42e6-a4f9-2a5f509cfad6",
- "action": "delete",
- "collection": "association_translations",
+ "_syncId": "3b465402-ae72-457b-a0d0-84d90996b9d0",
+ "action": "update",
+ "collection": "association_poles",
"fields": [
"*"
],
@@ -3715,21 +3744,21 @@
"validation": {}
},
{
- "_syncId": "83bd4a76-bb3d-40ca-9d5f-3084b4d5fb9f",
- "action": "read",
- "collection": "association_translations",
+ "_syncId": "3b884154-5057-4adb-87c1-11b613604d1b",
+ "action": "share",
+ "collection": "icbd_activities_icbd_speakers",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "f36e3de5-7dfc-495a-afb6-f639dcd57216",
- "action": "share",
- "collection": "association_translations",
+ "_syncId": "3ba7e33d-7eea-49a8-82b7-1e9cadea1982",
+ "action": "update",
+ "collection": "inventory",
"fields": [
"*"
],
@@ -3739,9 +3768,9 @@
"validation": {}
},
{
- "_syncId": "bb7e6af4-d058-45ab-9061-8d6111855a94",
- "action": "update",
- "collection": "association_translations",
+ "_syncId": "3c7f8db2-afa1-4d67-bf47-4492b1326ccb",
+ "action": "read",
+ "collection": "social_links",
"fields": [
"*"
],
@@ -3751,9 +3780,9 @@
"validation": {}
},
{
- "_syncId": "6f3a647d-8d16-4a54-915c-8cfec0be51ee",
+ "_syncId": "3e261a2a-ec8c-4c6d-b57a-455ae74f8e33",
"action": "create",
- "collection": "association",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
@@ -3763,21 +3792,33 @@
"validation": {}
},
{
- "_syncId": "db7ff8cf-8e12-4527-bb10-18fd25c78b77",
+ "_syncId": "3e335092-971d-4d6d-b073-08badc24660e",
+ "action": "create",
+ "collection": "subsonic",
+ "fields": [
+ "*"
+ ],
+ "permissions": null,
+ "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
+ "presets": null,
+ "validation": null
+ },
+ {
+ "_syncId": "3f44ccad-3dd1-4c80-b2ff-cad053123e52",
"action": "delete",
- "collection": "association",
+ "collection": "ICBD",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "acfd6cb7-5233-4505-b76a-73661903f195",
- "action": "read",
- "collection": "association",
+ "_syncId": "40040699-2d26-4a18-9492-d96a645620ba",
+ "action": "update",
+ "collection": "members",
"fields": [
"*"
],
@@ -3787,9 +3828,9 @@
"validation": {}
},
{
- "_syncId": "57f022a8-3adf-4d66-b727-c313578948bf",
- "action": "share",
- "collection": "association",
+ "_syncId": "40448180-6613-4044-8641-57920d28c65e",
+ "action": "delete",
+ "collection": "members",
"fields": [
"*"
],
@@ -3799,21 +3840,21 @@
"validation": {}
},
{
- "_syncId": "d1a9f307-9729-43ac-aef8-0414b2bf217b",
- "action": "update",
- "collection": "association",
+ "_syncId": "4190ee75-351b-49c3-917c-eb3276ad1fe0",
+ "action": "read",
+ "collection": "ICBD",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "3e261a2a-ec8c-4c6d-b57a-455ae74f8e33",
- "action": "create",
- "collection": "commission_memberships_translations",
+ "_syncId": "422184f4-b1f7-4464-a46c-53fd4be71d33",
+ "action": "delete",
+ "collection": "association_memberships",
"fields": [
"*"
],
@@ -3823,45 +3864,45 @@
"validation": {}
},
{
- "_syncId": "913fa82d-8626-4f39-827e-60e2c5f9974a",
- "action": "delete",
- "collection": "commission_memberships_translations",
+ "_syncId": "45c8ee8b-9faa-4af3-b143-0313ac9a3c1d",
+ "action": "share",
+ "collection": "events",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "61772051-c833-49e6-8ae7-9afd8a39410f",
- "action": "read",
- "collection": "commission_memberships_translations",
+ "_syncId": "45f3b1c2-371e-45f1-8bda-8be164c5de0a",
+ "action": "create",
+ "collection": "ICBD_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "eeadd0fd-52ca-43ea-bba0-5f18a2af3617",
+ "_syncId": "4960f25e-a6ca-4a07-a70b-097eaa2566ec",
"action": "share",
- "collection": "commission_memberships_translations",
+ "collection": "std_cell",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "0495ca97-1661-4888-bdb2-5fd05ffc4fbc",
- "action": "update",
- "collection": "commission_memberships_translations",
+ "_syncId": "4aafd4bc-cdc6-4e9a-930a-c05be3baac01",
+ "action": "read",
+ "collection": "inventory",
"fields": [
"*"
],
@@ -3871,33 +3912,33 @@
"validation": {}
},
{
- "_syncId": "aebc2531-aa5d-42f0-bd5b-893db769e52b",
- "action": "create",
- "collection": "commission_memberships",
+ "_syncId": "50a7369c-484b-4b34-a3b0-967a6c3ddd3b",
+ "action": "read",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "a54e4f5b-5358-42d1-b38d-05c6b8d2397d",
- "action": "delete",
- "collection": "commission_memberships",
+ "_syncId": "512c83c0-dc22-401d-af93-26c6d7b3f0a4",
+ "action": "create",
+ "collection": "ICBD",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "2cb91856-df6f-4bdf-86a6-aaf64bb4e055",
- "action": "read",
- "collection": "commission_memberships",
+ "_syncId": "514f54f8-95fb-4df5-bc51-3aee3106374c",
+ "action": "share",
+ "collection": "partners",
"fields": [
"*"
],
@@ -3907,9 +3948,9 @@
"validation": {}
},
{
- "_syncId": "67cd6028-58d8-4c18-92ff-85885ae76d3a",
+ "_syncId": "517a9d1b-661d-4bb1-a0c0-aef465b66073",
"action": "share",
- "collection": "commission_memberships",
+ "collection": "news",
"fields": [
"*"
],
@@ -3919,9 +3960,9 @@
"validation": {}
},
{
- "_syncId": "1a2cfa65-8f98-4f79-b402-762581c032f4",
+ "_syncId": "571ff113-a0e6-4dca-97d1-45fb7456ab0a",
"action": "update",
- "collection": "commission_memberships",
+ "collection": "association_memberships_translations",
"fields": [
"*"
],
@@ -3931,21 +3972,21 @@
"validation": {}
},
{
- "_syncId": "aba71ccb-12d6-418a-828d-66c4aeb959ed",
+ "_syncId": "573c564f-8cb6-4e7d-81ad-ac148bf90036",
"action": "create",
- "collection": "commissions_social_links",
+ "collection": "std_cell",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "a648ab3d-2ea7-426a-b58f-04cbb740f8c6",
+ "_syncId": "57bf6f26-4d34-4b3b-877e-a23ef0297b2c",
"action": "delete",
- "collection": "commissions_social_links",
+ "collection": "partners",
"fields": [
"*"
],
@@ -3955,9 +3996,9 @@
"validation": {}
},
{
- "_syncId": "700f29b7-fb0e-4f53-8447-fda67a9f1acc",
- "action": "read",
- "collection": "commissions_social_links",
+ "_syncId": "57f022a8-3adf-4d66-b727-c313578948bf",
+ "action": "share",
+ "collection": "association",
"fields": [
"*"
],
@@ -3967,45 +4008,45 @@
"validation": {}
},
{
- "_syncId": "06e872f1-172f-4d64-8368-65a4b1cb7ef3",
+ "_syncId": "58b07b75-2d22-4437-8eb8-36c79ef234e8",
"action": "share",
- "collection": "commissions_social_links",
+ "collection": "icbd_activities",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "ded4f211-ccb3-4d06-b3c8-1c9ba9d27f8a",
+ "_syncId": "592cf599-f3a4-4441-aa2b-c139ded80a71",
"action": "update",
- "collection": "commissions_social_links",
+ "collection": "icbd_activities_icbd_speakers",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "919869ec-bf6e-4f0b-ad04-56cab4e9d65c",
- "action": "create",
- "collection": "commissions_translations",
+ "_syncId": "5badc4a6-5bed-40ea-a391-f7f8fcbf1572",
+ "action": "delete",
+ "collection": "save_the_date",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "68ce42f2-226a-49f3-a61a-b1cb2cb93252",
- "action": "delete",
- "collection": "commissions_translations",
+ "_syncId": "5bdb12be-8a74-43d3-a0a7-900e711affea",
+ "action": "share",
+ "collection": "members",
"fields": [
"*"
],
@@ -4015,21 +4056,21 @@
"validation": {}
},
{
- "_syncId": "a63efb21-7d10-47c0-9b39-ef0bebea68fd",
- "action": "read",
- "collection": "commissions_translations",
+ "_syncId": "5c188c61-1937-44ea-9246-9dfde7b21d0c",
+ "action": "share",
+ "collection": "ICBD",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "a52c9510-6725-4051-9756-6ae85bccf623",
- "action": "share",
- "collection": "commissions_translations",
+ "_syncId": "5c31661f-2347-42ce-8445-cbc6084ebd80",
+ "action": "read",
+ "collection": "association_social_links",
"fields": [
"*"
],
@@ -4039,9 +4080,9 @@
"validation": {}
},
{
- "_syncId": "38ba836d-cb13-4db9-8608-2858692c54a5",
+ "_syncId": "5c9bd805-0ea6-4e20-9476-2f74bb038fc8",
"action": "update",
- "collection": "commissions_translations",
+ "collection": "association_social_links",
"fields": [
"*"
],
@@ -4051,8 +4092,8 @@
"validation": {}
},
{
- "_syncId": "f4118418-7ecd-4a56-9ab0-0302e6c1f86f",
- "action": "create",
+ "_syncId": "5ccdbbfb-16f6-46c4-9d68-9011d13f129e",
+ "action": "read",
"collection": "commissions",
"fields": [
"*"
@@ -4063,235 +4104,213 @@
"validation": {}
},
{
- "_syncId": "ec7caae6-d8f3-42e2-80f9-bb194c9007ff",
+ "_syncId": "5cee605b-8f60-49aa-8b52-5fa66a8534b2",
"action": "delete",
- "collection": "commissions",
+ "collection": "artists",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "5ccdbbfb-16f6-46c4-9d68-9011d13f129e",
+ "_syncId": "5d3bc59a-8608-429e-8a5f-94df8bfdd365",
"action": "read",
- "collection": "commissions",
+ "collection": "directus_users",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "ca180998-763b-441c-87bb-c041b5729d33",
- "action": "share",
- "collection": "commissions",
+ "_syncId": "5f21f264-a9da-41ab-af59-a889aa403511",
+ "action": "read",
+ "collection": "directus_folders",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "e3956105-6b7f-4a7a-9f78-68e7f6bc3ae3",
- "action": "update",
- "collection": "commissions",
+ "_syncId": "607fbfb9-98a3-4c94-8b34-30d3814cd2d6",
+ "action": "read",
+ "collection": "icbd_activities_icbd_speakers",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "8cd9b47a-4e6a-4130-80be-e98393a058b8",
- "action": "create",
- "collection": "directus_dashboards",
+ "_syncId": "6110f8b9-20c0-4fd8-b236-dd081825b2d0",
+ "action": "update",
+ "collection": "news",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "37a15cf8-bf47-480c-b048-942b9e5f468e",
+ "_syncId": "613def69-55fd-4c09-af1a-e253fcbf508c",
"action": "delete",
- "collection": "directus_dashboards",
+ "collection": "news",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "a4e7f1c8-eb90-4ef6-b60d-2f239da399b5",
+ "_syncId": "61772051-c833-49e6-8ae7-9afd8a39410f",
"action": "read",
- "collection": "directus_dashboards",
- "fields": [
- "*"
- ],
- "permissions": {},
- "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
- "presets": null,
- "validation": null
- },
- {
- "_syncId": "03f6a083-4c27-4c25-97e3-b7bacc5f5054",
- "action": "update",
- "collection": "directus_dashboards",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "71fb22ad-6723-4d35-9d83-b696cea1d995",
- "action": "create",
- "collection": "directus_files",
+ "_syncId": "62deb65d-b92e-49ae-8989-e74767ffe166",
+ "action": "read",
+ "collection": "partner_category",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "9e60182d-a9e8-4b44-8129-b52bb4edff0d",
- "action": "delete",
- "collection": "directus_files",
+ "_syncId": "64cd9e7c-f840-494e-9471-02f29ef85de2",
+ "action": "read",
+ "collection": "registrations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "6987ed98-9d61-4341-9863-8b2d5c4a6405",
+ "_syncId": "6634a07b-af14-45c5-93ed-9b5b2aa43136",
"action": "read",
- "collection": "directus_files",
+ "collection": "icbd_speakers",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "efcb06a1-fee4-4b2a-8e17-d3378182370d",
- "action": "update",
- "collection": "directus_files",
+ "_syncId": "66a9b407-6b19-4d70-805b-c48964ee35cd",
+ "action": "create",
+ "collection": "association_poles_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "bf68355e-daf5-493e-aba4-0a47f239fe05",
- "action": "read",
- "collection": "directus_flows",
+ "_syncId": "66cde994-4c7d-4444-835d-08d9813045bb",
+ "action": "share",
+ "collection": "association_public_files_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "7ed05d1f-6a0c-4336-881b-f037610214d6",
+ "_syncId": "67b423f5-af52-4ace-8cef-8a39509e93a2",
"action": "create",
- "collection": "directus_folders",
+ "collection": "news_partners",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
- },
- {
- "_syncId": "c5b76259-fcf0-4dd9-a336-eceefab13673",
- "action": "delete",
- "collection": "directus_folders",
- "fields": null,
- "permissions": {},
- "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
- "presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "5f21f264-a9da-41ab-af59-a889aa403511",
- "action": "read",
- "collection": "directus_folders",
+ "_syncId": "67cd6028-58d8-4c18-92ff-85885ae76d3a",
+ "action": "share",
+ "collection": "commission_memberships",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "174aec07-4899-4fe5-9fd7-87aec42a70e7",
- "action": "update",
- "collection": "directus_folders",
+ "_syncId": "68bdb242-ddd1-4599-9c49-95c2bfbc6f6a",
+ "action": "share",
+ "collection": "ICBD_files",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "e4686b4f-7023-44b9-a4d7-52b096390943",
- "action": "create",
- "collection": "directus_panels",
+ "_syncId": "68c69471-ec1c-49fb-af59-dcdce98b9f93",
+ "action": "read",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "b4cbd105-d2fe-4d7f-81e7-e2094f7f9ed6",
+ "_syncId": "68ce42f2-226a-49f3-a61a-b1cb2cb93252",
"action": "delete",
- "collection": "directus_panels",
+ "collection": "commissions_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "50a7369c-484b-4b34-a3b0-967a6c3ddd3b",
+ "_syncId": "6987ed98-9d61-4341-9863-8b2d5c4a6405",
"action": "read",
- "collection": "directus_panels",
+ "collection": "directus_files",
"fields": [
"*"
],
@@ -4301,156 +4320,117 @@
"validation": null
},
{
- "_syncId": "1f6468ef-ae3f-452c-af38-4fa0cd235581",
- "action": "update",
- "collection": "directus_panels",
+ "_syncId": "698c98a1-899c-4f6b-bf20-476049d8c274",
+ "action": "share",
+ "collection": "association_poles",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "99de7f2a-1e87-406a-b0e4-5eaa94d99a23",
- "action": "read",
- "collection": "directus_roles",
+ "_syncId": "6a2ebc82-062e-4fc0-a51d-84327ef153d1",
+ "action": "delete",
+ "collection": "news_commissions",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "313840c1-9516-4531-9135-0708f0928d1e",
- "action": "create",
- "collection": "directus_shares",
+ "_syncId": "6afbd209-61e4-4556-9aae-a7f130faa231",
+ "action": "update",
+ "collection": "news_commissions",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "b3cd6ce7-b50e-4d0d-8837-4341749fc5eb",
+ "_syncId": "6eee24cc-ce90-49dd-8416-4e4ad631f005",
"action": "delete",
- "collection": "directus_shares",
+ "collection": "languages",
"fields": [
"*"
],
- "permissions": {
- "user_created": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "375d733c-83f3-48f3-bdd4-4d9f192fa9cb",
- "action": "read",
- "collection": "directus_shares",
+ "_syncId": "6f3a647d-8d16-4a54-915c-8cfec0be51ee",
+ "action": "create",
+ "collection": "association",
"fields": [
"*"
],
- "permissions": {
- "_or": [
- {
- "role": {
- "_eq": "$CURRENT_ROLE"
- }
- },
- {
- "role": {
- "_null": true
- }
- }
- ]
- },
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "0b321574-75bf-4d4e-a240-c645b9e110a6",
- "action": "update",
- "collection": "directus_shares",
+ "_syncId": "6fc9762a-5cdc-4f9e-bfbc-61af9b85df21",
+ "action": "delete",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
- "permissions": {
- "user_created": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "5d3bc59a-8608-429e-8a5f-94df8bfdd365",
- "action": "read",
- "collection": "directus_users",
+ "_syncId": "7005a9a0-e7de-4f30-a5a6-6b0058059f1f",
+ "action": "delete",
+ "collection": "association_poles_translations",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "e3ddc6ed-c863-4428-b2e4-df14ab87c548",
- "action": "update",
- "collection": "directus_users",
+ "_syncId": "700f29b7-fb0e-4f53-8447-fda67a9f1acc",
+ "action": "read",
+ "collection": "commissions_social_links",
"fields": [
- "first_name",
- "last_name",
- "email",
- "password",
- "location",
- "title",
- "description",
- "avatar",
- "language",
- "appearance",
- "theme_light",
- "theme_dark",
- "theme_light_overrides",
- "theme_dark_overrides",
- "tfa_secret"
+ "*"
],
- "permissions": {
- "id": {
- "_eq": "$CURRENT_USER"
- }
- },
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "bd96afe6-bf2f-4031-a084-38e21028ab4a",
+ "_syncId": "70461d48-3ce4-4692-a284-92e815025311",
"action": "create",
- "collection": "events",
+ "collection": "association_poles",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "a7725b4b-79e9-4b8c-8c2a-6108c7d2c909",
+ "_syncId": "70f8a248-84a4-460c-a506-5010bb2394f4",
"action": "delete",
- "collection": "events",
+ "collection": "std_cell",
"fields": [
"*"
],
@@ -4460,57 +4440,57 @@
"validation": null
},
{
- "_syncId": "76222c05-1d5c-4f85-82f2-44a6a43bd5c9",
- "action": "read",
- "collection": "events",
+ "_syncId": "71c8fc89-db87-49c1-a440-02650125a136",
+ "action": "create",
+ "collection": "news_commissions",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "45c8ee8b-9faa-4af3-b143-0313ac9a3c1d",
- "action": "share",
- "collection": "events",
+ "_syncId": "71fb22ad-6723-4d35-9d83-b696cea1d995",
+ "action": "create",
+ "collection": "directus_files",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "330a99e8-b3e9-46e9-aa1d-81b3f7b308b2",
- "action": "update",
- "collection": "events",
+ "_syncId": "7219647b-7176-4240-b8a4-1881353ced85",
+ "action": "share",
+ "collection": "association_social_links",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "f794f497-ca36-4eec-95bd-3a9bc80cfbac",
- "action": "create",
- "collection": "icbd_activities_icbd_speakers",
+ "_syncId": "754eb744-6c51-42e6-a4f9-2a5f509cfad6",
+ "action": "delete",
+ "collection": "association_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "98a111dd-f495-484c-a0fe-79f2f7053f21",
- "action": "delete",
- "collection": "icbd_activities_icbd_speakers",
+ "_syncId": "76222c05-1d5c-4f85-82f2-44a6a43bd5c9",
+ "action": "read",
+ "collection": "events",
"fields": [
"*"
],
@@ -4520,9 +4500,9 @@
"validation": null
},
{
- "_syncId": "607fbfb9-98a3-4c94-8b34-30d3814cd2d6",
+ "_syncId": "777417f9-f98e-4f44-b7e0-a7381c926439",
"action": "read",
- "collection": "icbd_activities_icbd_speakers",
+ "collection": "save_the_date",
"fields": [
"*"
],
@@ -4532,21 +4512,21 @@
"validation": null
},
{
- "_syncId": "3b884154-5057-4adb-87c1-11b613604d1b",
- "action": "share",
- "collection": "icbd_activities_icbd_speakers",
+ "_syncId": "785a1d96-c2bc-4a30-9ce1-9aafe8c4c08d",
+ "action": "delete",
+ "collection": "association_public_files_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "592cf599-f3a4-4441-aa2b-c139ded80a71",
- "action": "update",
- "collection": "icbd_activities_icbd_speakers",
+ "_syncId": "7b5cd8db-8245-451e-9f6a-c7f5b7581d4f",
+ "action": "read",
+ "collection": "artists",
"fields": [
"*"
],
@@ -4556,33 +4536,33 @@
"validation": null
},
{
- "_syncId": "f4df53a6-28c2-4139-9668-43d33bb1851f",
- "action": "create",
- "collection": "icbd_activities_registrations",
+ "_syncId": "7cd65181-7a3f-4227-bb2e-8b36dfd69822",
+ "action": "read",
+ "collection": "association_public_files_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "6fc9762a-5cdc-4f9e-bfbc-61af9b85df21",
- "action": "delete",
- "collection": "icbd_activities_registrations",
+ "_syncId": "7d567781-b078-4e21-91f9-f9d1f83f8553",
+ "action": "create",
+ "collection": "association_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "f3dd6b0e-67e8-4652-a0f7-eb0bdbee8fce",
- "action": "read",
- "collection": "icbd_activities_registrations",
+ "_syncId": "7e305320-7004-4be4-9097-a245157bbe39",
+ "action": "update",
+ "collection": "std_cell",
"fields": [
"*"
],
@@ -4592,21 +4572,21 @@
"validation": null
},
{
- "_syncId": "c181e346-6824-4557-a2d0-32d0a58bd889",
- "action": "share",
- "collection": "icbd_activities_registrations",
+ "_syncId": "7ed05d1f-6a0c-4336-881b-f037610214d6",
+ "action": "create",
+ "collection": "directus_folders",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "85940189-c040-4a0e-9a39-6c0df302e6d7",
- "action": "update",
- "collection": "icbd_activities_registrations",
+ "_syncId": "7edbc882-b5d5-4709-a791-c8f35b3b20ba",
+ "action": "create",
+ "collection": "icbd_speakers",
"fields": [
"*"
],
@@ -4616,57 +4596,57 @@
"validation": null
},
{
- "_syncId": "055bc545-cd1a-43d5-9a80-7813bd529d24",
+ "_syncId": "8104883f-a22e-43bf-8751-92ce020bf711",
"action": "create",
- "collection": "icbd_activities_translations",
+ "collection": "inventory",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "0ef804c7-646e-42cb-be35-8bd8bed6d6cc",
+ "_syncId": "81f35cdb-6aae-4c19-a954-8756bb5d1de7",
"action": "delete",
- "collection": "icbd_activities_translations",
+ "collection": "association_poles",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "c922c28a-e234-49c0-bb6a-4639c39ed03e",
- "action": "read",
- "collection": "icbd_activities_translations",
+ "_syncId": "82b8631a-0f9f-44e6-b478-7bbea8085a7b",
+ "action": "create",
+ "collection": "news",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "e4fdd768-b857-491f-8804-435b9ad4ecf8",
- "action": "share",
- "collection": "icbd_activities_translations",
+ "_syncId": "83bd4a76-bb3d-40ca-9d5f-3084b4d5fb9f",
+ "action": "read",
+ "collection": "association_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "8f390b8a-2c67-49ad-9bb4-385512e5895b",
+ "_syncId": "84f7e5ed-381d-4ae3-8310-7f1222ef85ad",
"action": "update",
- "collection": "icbd_activities_translations",
+ "collection": "save_the_date_translations",
"fields": [
"*"
],
@@ -4676,9 +4656,9 @@
"validation": null
},
{
- "_syncId": "a0e6371a-aec6-4cd9-ab2f-867135c44584",
- "action": "create",
- "collection": "icbd_activities",
+ "_syncId": "85940189-c040-4a0e-9a39-6c0df302e6d7",
+ "action": "update",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -4688,21 +4668,21 @@
"validation": null
},
{
- "_syncId": "a287392f-02d9-4851-813d-507089ddc955",
- "action": "delete",
- "collection": "icbd_activities",
+ "_syncId": "85f69341-99c8-4c29-a5e3-9f56b69f67c9",
+ "action": "create",
+ "collection": "association_memberships",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "26cc9979-7e2e-4b9b-b4fd-7007160d8d71",
- "action": "read",
- "collection": "icbd_activities",
+ "_syncId": "86d5be95-7190-4f0b-b039-f91f9121d4e6",
+ "action": "delete",
+ "collection": "icbd_speakers",
"fields": [
"*"
],
@@ -4712,45 +4692,45 @@
"validation": null
},
{
- "_syncId": "58b07b75-2d22-4437-8eb8-36c79ef234e8",
+ "_syncId": "87c6d9a5-06bd-4b47-bcd5-15a0e09ab91c",
"action": "share",
- "collection": "icbd_activities",
+ "collection": "association_memberships",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "ccde802e-5d9c-4a5c-8296-7bb01f237501",
+ "_syncId": "89eeca22-260b-415e-a337-aa0894ae9dff",
"action": "update",
- "collection": "icbd_activities",
+ "collection": "association_poles_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "032fa28f-8509-4e15-a082-ccbe2adfa027",
+ "_syncId": "8af838b6-fe7f-4aa9-b7f2-e1693f8ab39b",
"action": "create",
- "collection": "ICBD_files",
+ "collection": "association_public_files_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "b1623866-33c8-4a12-80c2-9aaa027f62ef",
- "action": "delete",
- "collection": "ICBD_files",
+ "_syncId": "8b381e72-14b2-4866-b05f-59bc215c78be",
+ "action": "create",
+ "collection": "save_the_date_translations",
"fields": [
"*"
],
@@ -4760,33 +4740,21 @@
"validation": null
},
{
- "_syncId": "1b21a2cf-4df5-4509-b03d-5a7743139bcd",
- "action": "read",
- "collection": "ICBD_files",
+ "_syncId": "8cd9b47a-4e6a-4130-80be-e98393a058b8",
+ "action": "create",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "68bdb242-ddd1-4599-9c49-95c2bfbc6f6a",
+ "_syncId": "8cef892a-1ca9-4c7b-a5ca-5109663dddf9",
"action": "share",
- "collection": "ICBD_files",
- "fields": [
- "*"
- ],
- "permissions": null,
- "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
- "presets": null,
- "validation": null
- },
- {
- "_syncId": "283dec8e-0881-43c6-9a88-8b0c578f23f2",
- "action": "update",
- "collection": "ICBD_files",
+ "collection": "registrations",
"fields": [
"*"
],
@@ -4796,33 +4764,33 @@
"validation": null
},
{
- "_syncId": "27e92324-2c7e-4015-bcef-8f0b2b712a27",
- "action": "create",
- "collection": "icbd_phds",
+ "_syncId": "8ea8f916-1062-45be-9c1f-b8d06dea4134",
+ "action": "read",
+ "collection": "association_memberships",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "c9aaa6a7-a887-4fac-9ab0-335edc3c894f",
+ "_syncId": "8ecb4f69-8b1b-447a-a831-7e639a2d96c0",
"action": "delete",
- "collection": "icbd_phds",
+ "collection": "news_partners",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "b2c3ff0c-e0e4-4906-95d4-3be216575db0",
- "action": "read",
- "collection": "icbd_phds",
+ "_syncId": "8f284f14-2ba0-4e24-a1b0-0c80d1339d7e",
+ "action": "update",
+ "collection": "ICBD",
"fields": [
"*"
],
@@ -4832,9 +4800,9 @@
"validation": null
},
{
- "_syncId": "0bf3e77d-f635-436b-8eca-b0875ac22164",
- "action": "share",
- "collection": "icbd_phds",
+ "_syncId": "8f390b8a-2c67-49ad-9bb4-385512e5895b",
+ "action": "update",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -4844,93 +4812,93 @@
"validation": null
},
{
- "_syncId": "c2d37c1e-3ec7-4185-b994-be796919ca65",
- "action": "update",
- "collection": "icbd_phds",
+ "_syncId": "911fd6c6-79eb-4233-97d8-184262647496",
+ "action": "read",
+ "collection": "members",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "7edbc882-b5d5-4709-a791-c8f35b3b20ba",
- "action": "create",
- "collection": "icbd_speakers",
+ "_syncId": "913fa82d-8626-4f39-827e-60e2c5f9974a",
+ "action": "delete",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "86d5be95-7190-4f0b-b039-f91f9121d4e6",
- "action": "delete",
- "collection": "icbd_speakers",
+ "_syncId": "919869ec-bf6e-4f0b-ad04-56cab4e9d65c",
+ "action": "create",
+ "collection": "commissions_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "6634a07b-af14-45c5-93ed-9b5b2aa43136",
- "action": "read",
- "collection": "icbd_speakers",
+ "_syncId": "9329247d-2466-4f47-8bce-f4f54891562e",
+ "action": "share",
+ "collection": "news_partners",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "aa4f0e57-115a-4127-b5d5-cbad63bf2224",
+ "_syncId": "94a6f4d2-3db9-42cf-89ea-075d7134436b",
"action": "share",
- "collection": "icbd_speakers",
+ "collection": "news_commissions",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "afb043a1-c04f-4725-addd-dc67d8242a8f",
- "action": "update",
- "collection": "icbd_speakers",
+ "_syncId": "96d34d0d-d718-40c0-b16b-43db29800251",
+ "action": "create",
+ "collection": "members",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "45f3b1c2-371e-45f1-8bda-8be164c5de0a",
- "action": "create",
- "collection": "ICBD_translations",
+ "_syncId": "97acb766-fa2e-4199-a6bb-0885645c4c90",
+ "action": "delete",
+ "collection": "partner_category_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "a4ed6a19-7d44-4ea1-8944-d8357408de46",
+ "_syncId": "98a111dd-f495-484c-a0fe-79f2f7053f21",
"action": "delete",
- "collection": "ICBD_translations",
+ "collection": "icbd_activities_icbd_speakers",
"fields": [
"*"
],
@@ -4940,9 +4908,9 @@
"validation": null
},
{
- "_syncId": "193502e0-80c0-4d11-a0be-1a6f506ce55b",
- "action": "read",
- "collection": "ICBD_translations",
+ "_syncId": "99327f4c-539f-4701-9914-d6840df13821",
+ "action": "create",
+ "collection": "artists",
"fields": [
"*"
],
@@ -4952,33 +4920,33 @@
"validation": null
},
{
- "_syncId": "e9322eb5-0508-4468-903f-40774b9d4ec2",
- "action": "share",
- "collection": "ICBD_translations",
+ "_syncId": "99730f4b-b394-45d7-86ee-b5195c259f06",
+ "action": "read",
+ "collection": "association_partners",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "1f9ee40f-b0f0-49b9-b662-8600dda30b67",
- "action": "update",
- "collection": "ICBD_translations",
+ "_syncId": "99de7f2a-1e87-406a-b0e4-5eaa94d99a23",
+ "action": "read",
+ "collection": "directus_roles",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "512c83c0-dc22-401d-af93-26c6d7b3f0a4",
- "action": "create",
- "collection": "ICBD",
+ "_syncId": "9b81af60-8124-49ec-9042-6c0a5bc6dfd0",
+ "action": "share",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
@@ -4988,9 +4956,9 @@
"validation": null
},
{
- "_syncId": "3f44ccad-3dd1-4c80-b2ff-cad053123e52",
- "action": "delete",
- "collection": "ICBD",
+ "_syncId": "9d0642e0-8578-4b3f-b701-1faaf0b4aea7",
+ "action": "update",
+ "collection": "subsonic_translations",
"fields": [
"*"
],
@@ -5000,9 +4968,9 @@
"validation": null
},
{
- "_syncId": "4190ee75-351b-49c3-917c-eb3276ad1fe0",
- "action": "read",
- "collection": "ICBD",
+ "_syncId": "9d70ab9b-bf63-401d-95c0-dfd8c6e7d96a",
+ "action": "update",
+ "collection": "registrations",
"fields": [
"*"
],
@@ -5012,21 +4980,21 @@
"validation": null
},
{
- "_syncId": "5c188c61-1937-44ea-9246-9dfde7b21d0c",
- "action": "share",
- "collection": "ICBD",
+ "_syncId": "9e60182d-a9e8-4b44-8129-b52bb4edff0d",
+ "action": "delete",
+ "collection": "directus_files",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "8f284f14-2ba0-4e24-a1b0-0c80d1339d7e",
- "action": "update",
- "collection": "ICBD",
+ "_syncId": "a0e6371a-aec6-4cd9-ab2f-867135c44584",
+ "action": "create",
+ "collection": "icbd_activities",
"fields": [
"*"
],
@@ -5036,21 +5004,21 @@
"validation": null
},
{
- "_syncId": "8104883f-a22e-43bf-8751-92ce020bf711",
- "action": "create",
- "collection": "inventory",
+ "_syncId": "a287392f-02d9-4851-813d-507089ddc955",
+ "action": "delete",
+ "collection": "icbd_activities",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "f65aa5ba-5f4e-4d0d-8c07-03636081c435",
- "action": "delete",
- "collection": "inventory",
+ "_syncId": "a3670001-f88c-4098-8b7d-9a374119432f",
+ "action": "create",
+ "collection": "partners",
"fields": [
"*"
],
@@ -5060,33 +5028,33 @@
"validation": {}
},
{
- "_syncId": "4aafd4bc-cdc6-4e9a-930a-c05be3baac01",
+ "_syncId": "a4e7f1c8-eb90-4ef6-b60d-2f239da399b5",
"action": "read",
- "collection": "inventory",
+ "collection": "directus_dashboards",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "edfc1ef8-64a1-4f6c-88f2-31bfa4d33a9a",
- "action": "share",
- "collection": "inventory",
+ "_syncId": "a4ed6a19-7d44-4ea1-8944-d8357408de46",
+ "action": "delete",
+ "collection": "ICBD_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "3ba7e33d-7eea-49a8-82b7-1e9cadea1982",
- "action": "update",
- "collection": "inventory",
+ "_syncId": "a52c9510-6725-4051-9756-6ae85bccf623",
+ "action": "share",
+ "collection": "commissions_translations",
"fields": [
"*"
],
@@ -5096,9 +5064,9 @@
"validation": {}
},
{
- "_syncId": "c3f95b5d-8535-4a9f-a1ea-763239cbc368",
- "action": "create",
- "collection": "languages",
+ "_syncId": "a54e4f5b-5358-42d1-b38d-05c6b8d2397d",
+ "action": "delete",
+ "collection": "commission_memberships",
"fields": [
"*"
],
@@ -5108,21 +5076,21 @@
"validation": {}
},
{
- "_syncId": "6eee24cc-ce90-49dd-8416-4e4ad631f005",
- "action": "delete",
- "collection": "languages",
+ "_syncId": "a5bee96a-7308-49fc-9ee1-9b0b9261c621",
+ "action": "read",
+ "collection": "save_the_date_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "a769ebc5-476b-4266-9439-8c513a8438b1",
+ "_syncId": "a63efb21-7d10-47c0-9b39-ef0bebea68fd",
"action": "read",
- "collection": "languages",
+ "collection": "commissions_translations",
"fields": [
"*"
],
@@ -5132,9 +5100,9 @@
"validation": {}
},
{
- "_syncId": "1cb8a53e-8bfc-4373-883a-a8ade16b99b9",
- "action": "share",
- "collection": "languages",
+ "_syncId": "a648ab3d-2ea7-426a-b58f-04cbb740f8c6",
+ "action": "delete",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
@@ -5144,8 +5112,8 @@
"validation": {}
},
{
- "_syncId": "25f7394f-1803-4952-8b82-fe0cab65945f",
- "action": "update",
+ "_syncId": "a769ebc5-476b-4266-9439-8c513a8438b1",
+ "action": "read",
"collection": "languages",
"fields": [
"*"
@@ -5156,21 +5124,21 @@
"validation": {}
},
{
- "_syncId": "96d34d0d-d718-40c0-b16b-43db29800251",
- "action": "create",
- "collection": "members",
+ "_syncId": "a7725b4b-79e9-4b8c-8c2a-6108c7d2c909",
+ "action": "delete",
+ "collection": "events",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "40448180-6613-4044-8641-57920d28c65e",
+ "_syncId": "aa0cdf43-2cf3-4ae0-b55e-25289f0f52cb",
"action": "delete",
- "collection": "members",
+ "collection": "association_memberships_translations",
"fields": [
"*"
],
@@ -5180,21 +5148,21 @@
"validation": {}
},
{
- "_syncId": "911fd6c6-79eb-4233-97d8-184262647496",
- "action": "read",
- "collection": "members",
+ "_syncId": "aa4f0e57-115a-4127-b5d5-cbad63bf2224",
+ "action": "share",
+ "collection": "icbd_speakers",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "5bdb12be-8a74-43d3-a0a7-900e711affea",
+ "_syncId": "aa931339-0f3b-437c-9053-62adf0ba0663",
"action": "share",
- "collection": "members",
+ "collection": "association_memberships_translations",
"fields": [
"*"
],
@@ -5204,9 +5172,9 @@
"validation": {}
},
{
- "_syncId": "40040699-2d26-4a18-9492-d96a645620ba",
- "action": "update",
- "collection": "members",
+ "_syncId": "aba71ccb-12d6-418a-828d-66c4aeb959ed",
+ "action": "create",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
@@ -5216,9 +5184,9 @@
"validation": {}
},
{
- "_syncId": "71c8fc89-db87-49c1-a440-02650125a136",
- "action": "create",
- "collection": "news_commissions",
+ "_syncId": "acfd6cb7-5233-4505-b76a-73661903f195",
+ "action": "read",
+ "collection": "association",
"fields": [
"*"
],
@@ -5228,9 +5196,9 @@
"validation": {}
},
{
- "_syncId": "6a2ebc82-062e-4fc0-a51d-84327ef153d1",
- "action": "delete",
- "collection": "news_commissions",
+ "_syncId": "aebc2531-aa5d-42f0-bd5b-893db769e52b",
+ "action": "create",
+ "collection": "commission_memberships",
"fields": [
"*"
],
@@ -5240,9 +5208,9 @@
"validation": {}
},
{
- "_syncId": "27651560-4bc6-4d89-9fdc-608f368f9a76",
+ "_syncId": "aef59dc0-6543-4f54-99ae-8e454f956950",
"action": "read",
- "collection": "news_commissions",
+ "collection": "association_poles",
"fields": [
"*"
],
@@ -5252,69 +5220,69 @@
"validation": {}
},
{
- "_syncId": "94a6f4d2-3db9-42cf-89ea-075d7134436b",
- "action": "share",
- "collection": "news_commissions",
+ "_syncId": "af8ef180-fcd2-489e-a150-e681aa1c6bab",
+ "action": "create",
+ "collection": "registrations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "6afbd209-61e4-4556-9aae-a7f130faa231",
+ "_syncId": "afb043a1-c04f-4725-addd-dc67d8242a8f",
"action": "update",
- "collection": "news_commissions",
+ "collection": "icbd_speakers",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "67b423f5-af52-4ace-8cef-8a39509e93a2",
- "action": "create",
- "collection": "news_partners",
+ "_syncId": "b0956f77-db2a-436a-9b0b-1663c910524f",
+ "action": "delete",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "8ecb4f69-8b1b-447a-a831-7e639a2d96c0",
+ "_syncId": "b1623866-33c8-4a12-80c2-9aaa027f62ef",
"action": "delete",
- "collection": "news_partners",
+ "collection": "ICBD_files",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "be6af9c1-be3d-4f38-9f60-ee6130ca1b62",
+ "_syncId": "b2c3ff0c-e0e4-4906-95d4-3be216575db0",
"action": "read",
- "collection": "news_partners",
+ "collection": "icbd_phds",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "9329247d-2466-4f47-8bce-f4f54891562e",
- "action": "share",
- "collection": "news_partners",
+ "_syncId": "b3c7e281-78ab-466d-accd-ace346970ab4",
+ "action": "create",
+ "collection": "social_links",
"fields": [
"*"
],
@@ -5324,33 +5292,37 @@
"validation": {}
},
{
- "_syncId": "2a87aad6-720c-442c-9009-89917a68bf4b",
- "action": "update",
- "collection": "news_partners",
+ "_syncId": "b3cd6ce7-b50e-4d0d-8837-4341749fc5eb",
+ "action": "delete",
+ "collection": "directus_shares",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": {
+ "user_created": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "f04b1566-d58f-434b-9cbc-16dbc9c15b2a",
- "action": "create",
- "collection": "news_translations",
+ "_syncId": "b4cbd105-d2fe-4d7f-81e7-e2094f7f9ed6",
+ "action": "delete",
+ "collection": "directus_panels",
"fields": [
"*"
],
"permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "dde84ed3-7869-4eaf-8549-be360621ac96",
+ "_syncId": "b5d5e63d-07c6-4b1f-87b8-671f52b7dc12",
"action": "delete",
- "collection": "news_translations",
+ "collection": "association_social_links",
"fields": [
"*"
],
@@ -5360,9 +5332,21 @@
"validation": {}
},
{
- "_syncId": "eccb3d81-a008-4678-99c3-54fca828d5d9",
+ "_syncId": "b6b0a7b9-3016-4c93-ba44-2729a0b7a574",
"action": "read",
- "collection": "news_translations",
+ "collection": "std_cell",
+ "fields": [
+ "*"
+ ],
+ "permissions": null,
+ "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
+ "presets": null,
+ "validation": null
+ },
+ {
+ "_syncId": "b779e9a2-7e77-4c04-9919-f1f7bae88ab3",
+ "action": "update",
+ "collection": "social_links",
"fields": [
"*"
],
@@ -5371,10 +5355,10 @@
"presets": null,
"validation": {}
},
- {
- "_syncId": "0365b6c6-1a57-45c6-959d-7f6f71175268",
- "action": "share",
- "collection": "news_translations",
+ {
+ "_syncId": "bb7e6af4-d058-45ab-9061-8d6111855a94",
+ "action": "update",
+ "collection": "association_translations",
"fields": [
"*"
],
@@ -5384,9 +5368,9 @@
"validation": {}
},
{
- "_syncId": "307fb5c9-8867-4fec-a6ba-515a6797d298",
- "action": "update",
- "collection": "news_translations",
+ "_syncId": "bc05a84d-372d-4caa-aca2-2719f3888b04",
+ "action": "create",
+ "collection": "association_social_links",
"fields": [
"*"
],
@@ -5396,21 +5380,21 @@
"validation": {}
},
{
- "_syncId": "82b8631a-0f9f-44e6-b478-7bbea8085a7b",
+ "_syncId": "bd96afe6-bf2f-4031-a084-38e21028ab4a",
"action": "create",
- "collection": "news",
+ "collection": "events",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "613def69-55fd-4c09-af1a-e253fcbf508c",
- "action": "delete",
- "collection": "news",
+ "_syncId": "be6af9c1-be3d-4f38-9f60-ee6130ca1b62",
+ "action": "read",
+ "collection": "news_partners",
"fields": [
"*"
],
@@ -5420,21 +5404,21 @@
"validation": {}
},
{
- "_syncId": "11c31165-10e9-49ee-be0f-c9926a551b68",
+ "_syncId": "bf68355e-daf5-493e-aba4-0a47f239fe05",
"action": "read",
- "collection": "news",
+ "collection": "directus_flows",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "517a9d1b-661d-4bb1-a0c0-aef465b66073",
- "action": "share",
- "collection": "news",
+ "_syncId": "c007496e-ef34-4804-aa44-4b86ea353530",
+ "action": "delete",
+ "collection": "partner_category",
"fields": [
"*"
],
@@ -5444,9 +5428,9 @@
"validation": {}
},
{
- "_syncId": "6110f8b9-20c0-4fd8-b236-dd081825b2d0",
+ "_syncId": "c0c37172-7468-4615-b439-1aef2c5a41cb",
"action": "update",
- "collection": "news",
+ "collection": "association_memberships",
"fields": [
"*"
],
@@ -5456,45 +5440,45 @@
"validation": {}
},
{
- "_syncId": "c6a9fe4d-0f01-4720-93f1-3fe0b022fd9b",
- "action": "create",
- "collection": "partner_category_translations",
+ "_syncId": "c181e346-6824-4557-a2d0-32d0a58bd889",
+ "action": "share",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "97acb766-fa2e-4199-a6bb-0885645c4c90",
- "action": "delete",
- "collection": "partner_category_translations",
+ "_syncId": "c2d37c1e-3ec7-4185-b994-be796919ca65",
+ "action": "update",
+ "collection": "icbd_phds",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "fe1f8101-addb-41c9-9ba7-520366dba87c",
- "action": "read",
- "collection": "partner_category_translations",
+ "_syncId": "c2f11f03-e1b6-40f2-aaa9-6b2e94711fe8",
+ "action": "update",
+ "collection": "artists",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "fad2d154-038a-4c7c-9c4a-4b62d2ab9a11",
- "action": "share",
- "collection": "partner_category_translations",
+ "_syncId": "c3447000-2da9-45df-8b53-b13fcb561103",
+ "action": "read",
+ "collection": "association_poles_translations",
"fields": [
"*"
],
@@ -5504,21 +5488,21 @@
"validation": {}
},
{
- "_syncId": "ca4f6ca7-c78b-4a87-9c03-8589acdcd4ee",
- "action": "update",
- "collection": "partner_category_translations",
+ "_syncId": "c381bd5e-2c3c-4849-9371-96b02835e1d7",
+ "action": "share",
+ "collection": "save_the_date_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "df1d840e-2287-4a04-9379-84640c677755",
+ "_syncId": "c3f95b5d-8535-4a9f-a1ea-763239cbc368",
"action": "create",
- "collection": "partner_category",
+ "collection": "languages",
"fields": [
"*"
],
@@ -5528,9 +5512,19 @@
"validation": {}
},
{
- "_syncId": "c007496e-ef34-4804-aa44-4b86ea353530",
+ "_syncId": "c5b76259-fcf0-4dd9-a336-eceefab13673",
"action": "delete",
- "collection": "partner_category",
+ "collection": "directus_folders",
+ "fields": null,
+ "permissions": {},
+ "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
+ "presets": null,
+ "validation": null
+ },
+ {
+ "_syncId": "c6a9fe4d-0f01-4720-93f1-3fe0b022fd9b",
+ "action": "create",
+ "collection": "partner_category_translations",
"fields": [
"*"
],
@@ -5540,33 +5534,33 @@
"validation": {}
},
{
- "_syncId": "62deb65d-b92e-49ae-8989-e74767ffe166",
+ "_syncId": "c922c28a-e234-49c0-bb6a-4639c39ed03e",
"action": "read",
- "collection": "partner_category",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "da398b82-e690-48fa-969f-70318aad1e7f",
- "action": "share",
- "collection": "partner_category",
+ "_syncId": "c9aaa6a7-a887-4fac-9ab0-335edc3c894f",
+ "action": "delete",
+ "collection": "icbd_phds",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "ff51b809-7906-4fce-b1f2-75b6db37e925",
- "action": "update",
- "collection": "partner_category",
+ "_syncId": "ca180998-763b-441c-87bb-c041b5729d33",
+ "action": "share",
+ "collection": "commissions",
"fields": [
"*"
],
@@ -5576,9 +5570,9 @@
"validation": {}
},
{
- "_syncId": "a3670001-f88c-4098-8b7d-9a374119432f",
- "action": "create",
- "collection": "partners",
+ "_syncId": "ca4f6ca7-c78b-4a87-9c03-8589acdcd4ee",
+ "action": "update",
+ "collection": "partner_category_translations",
"fields": [
"*"
],
@@ -5588,45 +5582,45 @@
"validation": {}
},
{
- "_syncId": "57bf6f26-4d34-4b3b-877e-a23ef0297b2c",
- "action": "delete",
- "collection": "partners",
+ "_syncId": "cbd8c676-91c9-4cef-b839-d5ad87907d02",
+ "action": "share",
+ "collection": "artists",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "f8841c51-b450-4f41-b83a-d920c68b2c09",
- "action": "read",
- "collection": "partners",
+ "_syncId": "ccde802e-5d9c-4a5c-8296-7bb01f237501",
+ "action": "update",
+ "collection": "icbd_activities",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "514f54f8-95fb-4df5-bc51-3aee3106374c",
- "action": "share",
- "collection": "partners",
+ "_syncId": "ce0befa5-3554-4192-ac53-a569a62ed668",
+ "action": "delete",
+ "collection": "subsonic",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "37f33e5d-55f3-4b47-8c6b-9c220cba7788",
- "action": "update",
- "collection": "partners",
+ "_syncId": "d0f87698-2aad-4f43-be07-5e0d0652a11a",
+ "action": "share",
+ "collection": "association_poles_translations",
"fields": [
"*"
],
@@ -5636,93 +5630,93 @@
"validation": {}
},
{
- "_syncId": "af8ef180-fcd2-489e-a150-e681aa1c6bab",
- "action": "create",
- "collection": "registrations",
+ "_syncId": "d1a9f307-9729-43ac-aef8-0414b2bf217b",
+ "action": "update",
+ "collection": "association",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "e4e4dd09-f2c5-45ec-8f62-124b45fdf2f5",
- "action": "delete",
- "collection": "registrations",
+ "_syncId": "d763fe41-f928-4e16-957d-bd6e0961fdc3",
+ "action": "update",
+ "collection": "association_public_files_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "64cd9e7c-f840-494e-9471-02f29ef85de2",
+ "_syncId": "d987e4d7-c842-4da1-811e-1c7ff5337b81",
"action": "read",
- "collection": "registrations",
+ "collection": "association_public_files",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "8cef892a-1ca9-4c7b-a5ca-5109663dddf9",
+ "_syncId": "da398b82-e690-48fa-969f-70318aad1e7f",
"action": "share",
- "collection": "registrations",
+ "collection": "partner_category",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "9d70ab9b-bf63-401d-95c0-dfd8c6e7d96a",
- "action": "update",
- "collection": "registrations",
+ "_syncId": "db7ff8cf-8e12-4527-bb10-18fd25c78b77",
+ "action": "delete",
+ "collection": "association",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "8b381e72-14b2-4866-b05f-59bc215c78be",
- "action": "create",
- "collection": "save_the_date_translations",
+ "_syncId": "dc8ed8dc-84d6-4037-9021-daf5e1336a6f",
+ "action": "read",
+ "collection": "association_memberships_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "3384a58a-8ee5-43e2-bd52-35ad29f6204d",
+ "_syncId": "dde84ed3-7869-4eaf-8549-be360621ac96",
"action": "delete",
- "collection": "save_the_date_translations",
+ "collection": "news_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "a5bee96a-7308-49fc-9ee1-9b0b9261c621",
- "action": "read",
- "collection": "save_the_date_translations",
+ "_syncId": "dec6ba1c-7e35-4488-97db-7d2da3f54111",
+ "action": "update",
+ "collection": "std_cell_translations",
"fields": [
"*"
],
@@ -5732,69 +5726,87 @@
"validation": null
},
{
- "_syncId": "c381bd5e-2c3c-4849-9371-96b02835e1d7",
- "action": "share",
- "collection": "save_the_date_translations",
+ "_syncId": "ded4f211-ccb3-4d06-b3c8-1c9ba9d27f8a",
+ "action": "update",
+ "collection": "commissions_social_links",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
- {
- "_syncId": "84f7e5ed-381d-4ae3-8310-7f1222ef85ad",
- "action": "update",
- "collection": "save_the_date_translations",
+ {
+ "_syncId": "df1d840e-2287-4a04-9379-84640c677755",
+ "action": "create",
+ "collection": "partner_category",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "1ac71691-5cf9-46f7-99de-28b43e91a40a",
- "action": "create",
- "collection": "save_the_date",
+ "_syncId": "e3956105-6b7f-4a7a-9f78-68e7f6bc3ae3",
+ "action": "update",
+ "collection": "commissions",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "5badc4a6-5bed-40ea-a391-f7f8fcbf1572",
- "action": "delete",
- "collection": "save_the_date",
+ "_syncId": "e3ddc6ed-c863-4428-b2e4-df14ab87c548",
+ "action": "update",
+ "collection": "directus_users",
"fields": [
- "*"
+ "first_name",
+ "last_name",
+ "email",
+ "password",
+ "location",
+ "title",
+ "description",
+ "avatar",
+ "language",
+ "appearance",
+ "theme_light",
+ "theme_dark",
+ "theme_light_overrides",
+ "theme_dark_overrides",
+ "tfa_secret"
],
- "permissions": null,
+ "permissions": {
+ "id": {
+ "_eq": "$CURRENT_USER"
+ }
+ },
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "777417f9-f98e-4f44-b7e0-a7381c926439",
- "action": "read",
- "collection": "save_the_date",
+ "_syncId": "e4686b4f-7023-44b9-a4d7-52b096390943",
+ "action": "create",
+ "collection": "directus_panels",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "26ef3c0e-0d10-4786-8ace-2239d5ebbb23",
- "action": "share",
- "collection": "save_the_date",
+ "_syncId": "e4e4dd09-f2c5-45ec-8f62-124b45fdf2f5",
+ "action": "delete",
+ "collection": "registrations",
"fields": [
"*"
],
@@ -5804,9 +5816,9 @@
"validation": null
},
{
- "_syncId": "eea99874-62ef-41e7-a143-8eb7ba178d1b",
- "action": "update",
- "collection": "save_the_date",
+ "_syncId": "e4fdd768-b857-491f-8804-435b9ad4ecf8",
+ "action": "share",
+ "collection": "icbd_activities_translations",
"fields": [
"*"
],
@@ -5816,9 +5828,9 @@
"validation": null
},
{
- "_syncId": "b3c7e281-78ab-466d-accd-ace346970ab4",
- "action": "create",
- "collection": "social_links",
+ "_syncId": "e835f3f9-3637-47c5-8ee2-0b2d7b1d341b",
+ "action": "delete",
+ "collection": "association_partners",
"fields": [
"*"
],
@@ -5828,33 +5840,33 @@
"validation": {}
},
{
- "_syncId": "f0551daa-0bdb-4266-982f-a6bc4c7bd253",
- "action": "delete",
- "collection": "social_links",
+ "_syncId": "e9322eb5-0508-4468-903f-40774b9d4ec2",
+ "action": "share",
+ "collection": "ICBD_translations",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "3c7f8db2-afa1-4d67-bf47-4492b1326ccb",
- "action": "read",
- "collection": "social_links",
+ "_syncId": "ea9c3c21-6db4-4073-9cb0-c34e9c63a5fd",
+ "action": "update",
+ "collection": "subsonic",
"fields": [
"*"
],
- "permissions": {},
+ "permissions": null,
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": {}
+ "validation": null
},
{
- "_syncId": "07c1c812-1c00-4ce1-ab5d-95a4c6ac92dc",
- "action": "share",
- "collection": "social_links",
+ "_syncId": "ec7caae6-d8f3-42e2-80f9-bb194c9007ff",
+ "action": "delete",
+ "collection": "commissions",
"fields": [
"*"
],
@@ -5864,9 +5876,9 @@
"validation": {}
},
{
- "_syncId": "b779e9a2-7e77-4c04-9919-f1f7bae88ab3",
+ "_syncId": "ec8b62d1-4c25-470c-937c-73e02ce1a010",
"action": "update",
- "collection": "social_links",
+ "collection": "association_public_files",
"fields": [
"*"
],
@@ -5876,33 +5888,33 @@
"validation": {}
},
{
- "_syncId": "0c05a067-c7c8-4ae8-a2be-57931f89e474",
- "action": "create",
- "collection": "std_cell_translations",
+ "_syncId": "eccb3d81-a008-4678-99c3-54fca828d5d9",
+ "action": "read",
+ "collection": "news_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "b0956f77-db2a-436a-9b0b-1663c910524f",
- "action": "delete",
- "collection": "std_cell_translations",
+ "_syncId": "edfc1ef8-64a1-4f6c-88f2-31bfa4d33a9a",
+ "action": "share",
+ "collection": "inventory",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "68c69471-ec1c-49fb-af59-dcdce98b9f93",
- "action": "read",
- "collection": "std_cell_translations",
+ "_syncId": "eea99874-62ef-41e7-a143-8eb7ba178d1b",
+ "action": "update",
+ "collection": "save_the_date",
"fields": [
"*"
],
@@ -5912,69 +5924,69 @@
"validation": null
},
{
- "_syncId": "9b81af60-8124-49ec-9042-6c0a5bc6dfd0",
+ "_syncId": "eeadd0fd-52ca-43ea-bba0-5f18a2af3617",
"action": "share",
- "collection": "std_cell_translations",
+ "collection": "commission_memberships_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "dec6ba1c-7e35-4488-97db-7d2da3f54111",
+ "_syncId": "efcb06a1-fee4-4b2a-8e17-d3378182370d",
"action": "update",
- "collection": "std_cell_translations",
+ "collection": "directus_files",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
"validation": null
},
{
- "_syncId": "573c564f-8cb6-4e7d-81ad-ac148bf90036",
+ "_syncId": "f04b1566-d58f-434b-9cbc-16dbc9c15b2a",
"action": "create",
- "collection": "std_cell",
+ "collection": "news_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "70f8a248-84a4-460c-a506-5010bb2394f4",
+ "_syncId": "f0551daa-0bdb-4266-982f-a6bc4c7bd253",
"action": "delete",
- "collection": "std_cell",
+ "collection": "social_links",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "b6b0a7b9-3016-4c93-ba44-2729a0b7a574",
- "action": "read",
- "collection": "std_cell",
+ "_syncId": "f36e3de5-7dfc-495a-afb6-f639dcd57216",
+ "action": "share",
+ "collection": "association_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "4960f25e-a6ca-4a07-a70b-097eaa2566ec",
- "action": "share",
- "collection": "std_cell",
+ "_syncId": "f3dd6b0e-67e8-4652-a0f7-eb0bdbee8fce",
+ "action": "read",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -5984,21 +5996,21 @@
"validation": null
},
{
- "_syncId": "7e305320-7004-4be4-9097-a245157bbe39",
- "action": "update",
- "collection": "std_cell",
+ "_syncId": "f4118418-7ecd-4a56-9ab0-0302e6c1f86f",
+ "action": "create",
+ "collection": "commissions",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "04168a97-3f9d-490b-811e-d38bd83b4c40",
+ "_syncId": "f4df53a6-28c2-4139-9668-43d33bb1851f",
"action": "create",
- "collection": "subsonic_translations",
+ "collection": "icbd_activities_registrations",
"fields": [
"*"
],
@@ -6008,21 +6020,21 @@
"validation": null
},
{
- "_syncId": "243252ce-7ea1-4194-bf20-d2fe99831b96",
+ "_syncId": "f65aa5ba-5f4e-4d0d-8c07-03636081c435",
"action": "delete",
- "collection": "subsonic_translations",
+ "collection": "inventory",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "1cc4bea4-6408-43e2-80d9-d9556fe9b186",
- "action": "read",
- "collection": "subsonic_translations",
+ "_syncId": "f794f497-ca36-4eec-95bd-3a9bc80cfbac",
+ "action": "create",
+ "collection": "icbd_activities_icbd_speakers",
"fields": [
"*"
],
@@ -6032,9 +6044,9 @@
"validation": null
},
{
- "_syncId": "06414ca3-4c6d-4820-a296-c3de5773c1d2",
+ "_syncId": "f7d7042c-2f49-4b6c-a0fc-6df83a670c27",
"action": "share",
- "collection": "subsonic_translations",
+ "collection": "subsonic",
"fields": [
"*"
],
@@ -6044,40 +6056,40 @@
"validation": null
},
{
- "_syncId": "9d0642e0-8578-4b3f-b701-1faaf0b4aea7",
- "action": "update",
- "collection": "subsonic_translations",
+ "_syncId": "f8841c51-b450-4f41-b83a-d920c68b2c09",
+ "action": "read",
+ "collection": "partners",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "3e335092-971d-4d6d-b073-08badc24660e",
- "action": "create",
- "collection": "subsonic",
+ "_syncId": "fad2d154-038a-4c7c-9c4a-4b62d2ab9a11",
+ "action": "share",
+ "collection": "partner_category_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
- "_syncId": "ce0befa5-3554-4192-ac53-a569a62ed668",
- "action": "delete",
- "collection": "subsonic",
+ "_syncId": "fe1f8101-addb-41c9-9ba7-520366dba87c",
+ "action": "read",
+ "collection": "partner_category_translations",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
},
{
"_syncId": "fe3aab8f-245d-4fad-ab27-255ab5771c53",
@@ -6092,27 +6104,15 @@
"validation": null
},
{
- "_syncId": "f7d7042c-2f49-4b6c-a0fc-6df83a670c27",
- "action": "share",
- "collection": "subsonic",
- "fields": [
- "*"
- ],
- "permissions": null,
- "policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
- "presets": null,
- "validation": null
- },
- {
- "_syncId": "ea9c3c21-6db4-4073-9cb0-c34e9c63a5fd",
+ "_syncId": "ff51b809-7906-4fce-b1f2-75b6db37e925",
"action": "update",
- "collection": "subsonic",
+ "collection": "partner_category",
"fields": [
"*"
],
- "permissions": null,
+ "permissions": {},
"policy": "e6d9b371-2ccb-40f6-b607-7d900c3364b0",
"presets": null,
- "validation": null
+ "validation": {}
}
]
diff --git a/save.sh b/save.sh
index 43e2214..23fbb38 100755
--- a/save.sh
+++ b/save.sh
@@ -2,8 +2,17 @@
BASEDIR=$(dirname "$0")
source $BASEDIR/utils.sh
+sort() {
+ tmp=$(mktemp sorting-XXX)
+ jq "sort_by($1, ._syncId)" $2 > $tmp
+ mv $tmp $2
+}
+
pushd $BASEDIR
npx directus-sync pull
+
+sort '.flow, .position_x, .position_y' directus-config/collections/operations.json
+sort '.policy' directus-config/collections/permissions.json
popd
docker exec -u root -it $(directus_container) npx -y directus-typescript-gen --email clic@epfl.ch --password 1234 -h http://127.0.0.1:8055 -o /share/schema.d.ts
diff --git a/utils.sh b/utils.sh
index 6d87ae1..9762d88 100644
--- a/utils.sh
+++ b/utils.sh
@@ -1,3 +1,8 @@
+if ! command -v jq > /dev/null; then
+ echo 'Missing `jq` executable, please make sure it is available in your PATH'
+ exit 1
+fi
+
find_container() {
label=$1
ids=$(docker ps --filter label=org.clic.type=$label -q)