20 lines
419 B
Plaintext
20 lines
419 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.security.putPrivileges({
|
|
privileges: {
|
|
myapp: {
|
|
read: {
|
|
actions: ["data:read/*", "action:login"],
|
|
metadata: {
|
|
description: "Read access to myapp",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|