Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix/small-bugs 43 lines 1.1 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n INSERT INTO delegation_audit_log\n (delegated_did, actor_did, controller_did, action_type, action_details, ip_address, user_agent)\n VALUES ($1, $2, $3, $4, $5, $6, $7)\n RETURNING id\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 } 11 ], 12 "parameters": { 13 "Left": [ 14 "Text", 15 "Text", 16 "Text", 17 { 18 "Custom": { 19 "name": "delegation_action_type", 20 "kind": { 21 "Enum": [ 22 "grant_created", 23 "grant_revoked", 24 "scopes_modified", 25 "token_issued", 26 "repo_write", 27 "blob_upload", 28 "account_action" 29 ] 30 } 31 } 32 }, 33 "Jsonb", 34 "Text", 35 "Text" 36 ] 37 }, 38 "nullable": [ 39 false 40 ] 41 }, 42 "hash": "f39a4ecc8d660bd42c6dceb688cbd1fea6fc61f38c6c4be4428473936a279e1e" 43}