Wekan REST API v7.08
+Wekan REST API v7.09
@@ -9645,6 +9645,9 @@ Accept: application/jsonScroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
const inputBody = '{
+ "newBoardId": "string",
+ "newSwimlaneId": "string",
+ "newListId": "string",
"title": "string",
"sort": "string",
"parentId": "string",
@@ -9689,6 +9692,9 @@ fetch('/api/boards/{board}/lists/{list}/cards/{ca
const fetch = require('node-fetch');
const inputBody = {
+ "newBoardId": "string",
+ "newSwimlaneId": "string",
+ "newListId": "string",
"title": "string",
"sort": "string",
"parentId": "string",
@@ -9838,7 +9844,10 @@ System.out.println(response.toString());
Body parameter
-title: string
+newBoardId: string
+newSwimlaneId: string
+newListId: string
+title: string
sort: string
parentId: string
description: string
@@ -9899,10 +9908,31 @@ System.out.println(response.toString());
body
body
object
-false
+true
none
+» newBoardId
+body
+string
+true
+the newBoardId value
+
+
+» newSwimlaneId
+body
+string
+true
+the newSwimlaneId value
+
+
+» newListId
+body
+string
+true
+the newListId value
+
+
» title
body
string
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 7fec53c9d..e26d887f9 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v7.08
+ version: v7.09
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -1930,6 +1930,21 @@ paths:
- multipart/form-data
- application/json
parameters:
+ - name: newBoardId
+ in: formData
+ description: the newBoardId value
+ type: string
+ required: true
+ - name: newSwimlaneId
+ in: formData
+ description: the newSwimlaneId value
+ type: string
+ required: true
+ - name: newListId
+ in: formData
+ description: the newListId value
+ type: string
+ required: true
- name: title
in: formData
description: |
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 4ae78df38..565850d44 100644
--- a/sandstorm-pkgdef.capnp
+++ b/sandstorm-pkgdef.capnp
@@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
- appVersion = 708,
+ appVersion = 709,
# Increment this for every release.
- appMarketingVersion = (defaultText = "7.08.0~2023-08-17"),
+ appMarketingVersion = (defaultText = "7.09.0~2023-08-21"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 4c8a3b744..4cff8aa2e 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '7.08'
+version: '7.09'
base: core20
summary: Open Source kanban
description: |
@@ -170,9 +170,9 @@ parts:
# Cleanup
mkdir .build
cd .build
- wget https://github.com/wekan/wekan/releases/download/v7.08/wekan-7.08-amd64.zip
- unzip wekan-7.08-amd64.zip
- rm wekan-7.08-amd64.zip
+ wget https://github.com/wekan/wekan/releases/download/v7.09/wekan-7.09-amd64.zip
+ unzip wekan-7.09-amd64.zip
+ rm wekan-7.09-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf