We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec3920b commit de00aa8Copy full SHA for de00aa8
guides/data-privacy/audit-logging.md
@@ -48,14 +48,15 @@ npm add @cap-js/audit-logging
48
"audit-log": {
49
"handle": ["READ", "WRITE"],
50
"outbox": true,
51
- "[development]": {
+ "[development]": { "kind": "audit-log-to-console" },
52
+ "[hybrid]": { "kind": "audit-log-to-restv2" },
53
+ "[production]": { "kind": "audit-log-to-restv2" }
54
+ },
55
+ "kinds": {
56
+ "audit-log-to-console": {
57
"impl": "@cap-js/audit-logging/srv/log2console"
58
},
- "[hybrid]": {
- "impl": "@cap-js/audit-logging/srv/log2restv2",
- "vcap": { "label": "auditlog" }
- },
- "[production]": {
59
+ "audit-log-to-restv2": {
60
"impl": "@cap-js/audit-logging/srv/log2restv2",
61
"vcap": { "label": "auditlog" }
62
}
0 commit comments