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 910 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n INSERT INTO external_identities (did, provider, provider_user_id, provider_username, provider_email)\n VALUES ($1, $2, $3, $4, $5)\n RETURNING id\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 } 11 ], 12 "parameters": { 13 "Left": [ 14 "Text", 15 { 16 "Custom": { 17 "name": "sso_provider_type", 18 "kind": { 19 "Enum": [ 20 "github", 21 "discord", 22 "google", 23 "gitlab", 24 "oidc", 25 "apple" 26 ] 27 } 28 } 29 }, 30 "Text", 31 "Text", 32 "Text" 33 ] 34 }, 35 "nullable": [ 36 false 37 ] 38 }, 39 "hash": "dd7d80d4d118a5fc95b574e2ca9ffaccf974e52fb6ac368f716409c55f9d3ab0" 40}