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 70 lines 1.5 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT u.id, u.did, u.handle, u.email, u.deactivated_at, u.takedown_ref, u.is_admin,\n k.key_bytes, k.encryption_version\n FROM users u\n JOIN user_keys k ON u.id = k.user_id\n WHERE u.did = $1", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 }, 11 { 12 "ordinal": 1, 13 "name": "did", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "handle", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "email", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "deactivated_at", 29 "type_info": "Timestamptz" 30 }, 31 { 32 "ordinal": 5, 33 "name": "takedown_ref", 34 "type_info": "Text" 35 }, 36 { 37 "ordinal": 6, 38 "name": "is_admin", 39 "type_info": "Bool" 40 }, 41 { 42 "ordinal": 7, 43 "name": "key_bytes", 44 "type_info": "Bytea" 45 }, 46 { 47 "ordinal": 8, 48 "name": "encryption_version", 49 "type_info": "Int4" 50 } 51 ], 52 "parameters": { 53 "Left": [ 54 "Text" 55 ] 56 }, 57 "nullable": [ 58 false, 59 false, 60 false, 61 true, 62 true, 63 true, 64 false, 65 false, 66 true 67 ] 68 }, 69 "hash": "2b33d7354f45fcda94edcc20f55c84f630c8c7b9675a9094ba457d38f02deb33" 70}