15 lines
389 B
Plaintext
15 lines
389 B
Plaintext
// heromodels/examples/access/access.rhai
|
|
|
|
print("--- Testing Access Rhai Module ---");
|
|
|
|
// --- Image ---
|
|
print("\n1. Creating and saving an access...");
|
|
let new_access = new_access()
|
|
.object_id(1)
|
|
.circle_public_key("some_pk")
|
|
.group_id(1)
|
|
.contact_id(1)
|
|
.expires_at(1735689600) // Future timestamp
|
|
.save_access();
|
|
|
|
print("Access saved with ID: " + new_access.id); |