mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 08:01:35 +00:00
sync hub items with community (#436)
Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
4ea3de9c0d
commit
40de4ef4e7
@@ -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."
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user