feat: Convert all app files to JS

This commit is contained in:
Faruk AYDIN
2024-01-05 17:44:21 +01:00
parent b95478b635
commit 43dba351c3
1030 changed files with 5114 additions and 6436 deletions

View File

@@ -1,4 +1,4 @@
import defineAction from '../../../../helpers/define-action';
import defineAction from '../../../../helpers/define-action.js';
export default defineAction({
name: 'Copy board',
@@ -8,7 +8,7 @@ export default defineAction({
{
label: 'Original board',
key: 'originalBoard',
type: 'dropdown' as const,
type: 'dropdown',
required: true,
description: 'The board that you want to copy.',
variables: true,
@@ -26,7 +26,7 @@ export default defineAction({
{
label: 'Title',
key: 'title',
type: 'string' as const,
type: 'string',
required: true,
description: 'Title for the board.',
variables: true,
@@ -34,7 +34,7 @@ export default defineAction({
{
label: 'Description',
key: 'description',
type: 'string' as const,
type: 'string',
required: false,
description: 'Description of the board.',
variables: true,
@@ -42,7 +42,7 @@ export default defineAction({
{
label: 'Team Access',
key: 'teamAccess',
type: 'dropdown' as const,
type: 'dropdown',
required: false,
description:
'Team access to the board. Can be private, view, comment or edit. Default: private.',
@@ -69,7 +69,7 @@ export default defineAction({
{
label: 'Access Via Link',
key: 'accessViaLink',
type: 'dropdown' as const,
type: 'dropdown',
required: false,
description:
'Access to the board by link. Can be private, view, comment. Default: private.',