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 40 lines 845 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT session_id, user_agent, ip_address, last_seen_at\n FROM oauth_device\n WHERE id = $1\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "session_id", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "user_agent", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "ip_address", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "last_seen_at", 24 "type_info": "Timestamptz" 25 } 26 ], 27 "parameters": { 28 "Left": [ 29 "Text" 30 ] 31 }, 32 "nullable": [ 33 false, 34 true, 35 false, 36 false 37 ] 38 }, 39 "hash": "869540e943c22dbbfacd200782b9d723a21954025a7c82180b4d193ccefb9bab" 40}