mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-19 03:24:42 -04:00
* fix: remove multiple ways to specify database name * feat: resent email for already invited user * feat: mailer address from smtp username * feat: allow user defined smtp port
28 lines
605 B
JSON
28 lines
605 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "\n SELECT id, invitee_email\n FROM public.af_workspace_invitation\n WHERE workspace_id = $1\n AND status = 0\n ",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "id",
|
|
"type_info": "Uuid"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "invitee_email",
|
|
"type_info": "Text"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "594af4041e0778476a699536316007f0a264f7d3db9de6326ef8082a2a898995"
|
|
}
|