Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at fix/code-quality-in-general 81 lines 1.8 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT id, did, provider as \"provider: SsoProviderType\", provider_user_id, provider_username, provider_email\n FROM external_identities\n WHERE provider = $1 AND provider_user_id = $2\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": "provider: SsoProviderType", 19 "type_info": { 20 "Custom": { 21 "name": "sso_provider_type", 22 "kind": { 23 "Enum": [ 24 "github", 25 "discord", 26 "google", 27 "gitlab", 28 "oidc", 29 "apple" 30 ] 31 } 32 } 33 } 34 }, 35 { 36 "ordinal": 3, 37 "name": "provider_user_id", 38 "type_info": "Text" 39 }, 40 { 41 "ordinal": 4, 42 "name": "provider_username", 43 "type_info": "Text" 44 }, 45 { 46 "ordinal": 5, 47 "name": "provider_email", 48 "type_info": "Text" 49 } 50 ], 51 "parameters": { 52 "Left": [ 53 { 54 "Custom": { 55 "name": "sso_provider_type", 56 "kind": { 57 "Enum": [ 58 "github", 59 "discord", 60 "google", 61 "gitlab", 62 "oidc", 63 "apple" 64 ] 65 } 66 } 67 }, 68 "Text" 69 ] 70 }, 71 "nullable": [ 72 false, 73 false, 74 false, 75 false, 76 true, 77 true 78 ] 79 }, 80 "hash": "59e63c5cf92985714e9586d1ce012efef733d4afaa4ea09974daf8303805e5d2" 81}