show the OTP id in the superuser form

This commit is contained in:
Gani Georgiev
2024-11-23 12:44:03 +02:00
parent c3b347af4b
commit b34453afc7
30 changed files with 123 additions and 117 deletions
@@ -99,8 +99,8 @@
const batch = pb.createBatch();
batch.collection('${collection?.name}').create({ ... });
batch.collection('${collection?.name}').update("RECORD_ID", { ... });
batch.collection('${collection?.name}').delete("RECORD_ID");
batch.collection('${collection?.name}').update('RECORD_ID', { ... });
batch.collection('${collection?.name}').delete('RECORD_ID');
batch.collection('${collection?.name}').upsert({ ... });
const result = await batch.send();