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 58 lines 1.2 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT id, did, request_uri, code, attempts, created_at, expires_at\n FROM oauth_2fa_challenge\n WHERE request_uri = $1\n ", 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": "request_uri", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "code", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "attempts", 29 "type_info": "Int4" 30 }, 31 { 32 "ordinal": 5, 33 "name": "created_at", 34 "type_info": "Timestamptz" 35 }, 36 { 37 "ordinal": 6, 38 "name": "expires_at", 39 "type_info": "Timestamptz" 40 } 41 ], 42 "parameters": { 43 "Left": [ 44 "Text" 45 ] 46 }, 47 "nullable": [ 48 false, 49 false, 50 false, 51 false, 52 false, 53 false, 54 false 55 ] 56 }, 57 "hash": "a5d2a88fb18dc6b6d5b3091be9a9f27b380a2da98d6b8a0344006cac2b036258" 58}