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 66 lines 1.5 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT token, request_uri, provider as \"provider: SsoProviderType\", provider_user_id,\n provider_username, provider_email\n FROM sso_pending_registration\n WHERE token = $1 AND expires_at > NOW()\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "token", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "request_uri", 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 "Text" 54 ] 55 }, 56 "nullable": [ 57 false, 58 false, 59 false, 60 false, 61 true, 62 true 63 ] 64 }, 65 "hash": "9fd56986c1c843d386d1e5884acef8573eb55a3e9f5cb0122fcf8b93d6d667a5" 66}