sync hub items with community (#437)

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2022-08-16 21:06:57 +02:00
committed by GitHub
co-authored by rubenfiszel
parent 2c7509497b
commit b2fbb87181
+32
View File
@@ -0,0 +1,32 @@
{
"workspace_id": "starter",
"name": "smtp",
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"host"
],
"properties": {
"host": {
"type": "string",
"default": "mail.smtpbucket.com",
"description": "SMTP host address"
},
"port": {
"type": "integer",
"default": 8025,
"description": "port number on which to connect"
},
"user": {
"type": "string",
"description": ""
},
"password": {
"type": "string",
"description": ""
}
}
},
"description": ""
}