sync hub items with community (#436)

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2022-08-16 19:06:21 +02:00
committed by GitHub
parent 4ea3de9c0d
commit 40de4ef4e7
3 changed files with 92 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"workspace_id": "starter",
"name": "mastodon",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"baseUrl": {
"type": "string",
"description": "The URL of the Mastodon instance, like \"https://mastodon.example\".",
"pattern": "^https?://.+[^/]$",
"default": ""
},
"accessToken": {
"type": "string",
"description": "An access token to act as a logged-in user. Leave this empty, if you want to perform unauthenticated requests."
}
},
"required": [],
"type": "object"
},
"description": "Mastodon offers decentralized micro blogging and is open-source."
}
+25
View File
@@ -0,0 +1,25 @@
{
"workspace_id": "starter",
"name": "matrix",
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"homeserverUrl"
],
"properties": {
"accessToken": {
"type": "string",
"description": "An access token to act as a logged-in user. Leave this empty, if you want to perform unauthenticated requests.",
"default": ""
},
"homeserverUrl": {
"type": "string",
"default": "",
"pattern": "^https?://.+?[^/]$",
"description": "The homeserver URL"
}
}
},
"description": "Login credentials for a Matrix.org homeserver"
}
+45
View File
@@ -0,0 +1,45 @@
{
"workspace_id": "starter",
"name": "s3",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"endPoint": {
"type": "string",
"description": ""
},
"port": {
"type": "number",
"description": ""
},
"useSSL": {
"type": "boolean",
"description": "",
"default": true
},
"pathStyle": {
"type": "boolean",
"description": "",
"default": false
},
"bucket": {
"type": "string",
"description": ""
},
"accessKey": {
"type": "string",
"description": ""
},
"secretKey": {
"type": "string",
"description": ""
}
},
"required": [
"endPoint",
"bucket"
],
"type": "object"
},
"description": "An s3 bucket connection info. The schema is taken from and meant to be used with: https://github.com/bradenmacdonald/deno-s3-lite-client"
}