From a52bc2e8a0dd4137692cd147179b00d96f388143 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Oct 2022 02:41:19 +0200 Subject: [PATCH] sync hub items with community (#652) Co-authored-by: rubenfiszel --- community/resource_types/funkwhale.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 community/resource_types/funkwhale.json diff --git a/community/resource_types/funkwhale.json b/community/resource_types/funkwhale.json new file mode 100644 index 0000000000..fae755dbf6 --- /dev/null +++ b/community/resource_types/funkwhale.json @@ -0,0 +1,24 @@ +{ + "workspace_id": "starter", + "name": "funkwhale", + "schema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "baseUrl": { + "type": "string", + "description": "", + "default": "" + }, + "token": { + "type": "string", + "description": "An access token to act as a logged-in user. You can create an application by visiting /settings. Leave this empty, if you want to perform unauthenticated requests.", + "default": "" + } + }, + "required": [ + "baseUrl" + ], + "type": "object" + }, + "description": "" +}