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 99 lines 2.2 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT id, did, provider as \"provider: SsoProviderType\", provider_user_id,\n provider_username, provider_email, created_at, updated_at, last_login_at\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 "ordinal": 6, 52 "name": "created_at", 53 "type_info": "Timestamptz" 54 }, 55 { 56 "ordinal": 7, 57 "name": "updated_at", 58 "type_info": "Timestamptz" 59 }, 60 { 61 "ordinal": 8, 62 "name": "last_login_at", 63 "type_info": "Timestamptz" 64 } 65 ], 66 "parameters": { 67 "Left": [ 68 { 69 "Custom": { 70 "name": "sso_provider_type", 71 "kind": { 72 "Enum": [ 73 "github", 74 "discord", 75 "google", 76 "gitlab", 77 "oidc", 78 "apple" 79 ] 80 } 81 } 82 }, 83 "Text" 84 ] 85 }, 86 "nullable": [ 87 false, 88 false, 89 false, 90 false, 91 true, 92 true, 93 false, 94 false, 95 true 96 ] 97 }, 98 "hash": "a87afce2ff68221df2e3e1051293217446fa0ed25144755f0da6f4825478506c" 99}