-
Wekan REST API v7.27
+
Wekan REST API v7.28
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
@@ -9670,7 +9670,8 @@ Accept: application/json
"assignees": "string",
"swimlaneId": "string",
"listId": "string",
- "authorId": "string"
+ "authorId": "string",
+ "archive": "string"
}';
const headers = {
'Content-Type':
'multipart/form-data',
@@ -9717,7 +9718,8 @@ fetch(
'/api/boards/{board}/lists/{list}/cards/{ca
"assignees": "string",
"swimlaneId": "string",
"listId": "string",
- "authorId": "string"
+ "authorId": "string",
+ "archive": "string"
};
const headers = {
'Content-Type':'multipart/form-data',
@@ -9870,6 +9872,7 @@ System.out.println(response.toString());
swimlaneId: string
listId: string
authorId: string
+archive: string
Parameters
@@ -10087,6 +10090,13 @@ System.out.println(response.toString());
false |
change the owner of the card |
+
+| » archive |
+body |
+string |
+true |
+the archive value |
+
Detailed descriptions
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 8df14ebe2..13b31d1e1 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.27
+ version: v7.28
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -2077,6 +2077,11 @@ paths:
change the owner of the card
type: string
required: false
+ - name: archive
+ in: formData
+ description: the archive value
+ type: string
+ required: true
- name: board
in: path
description: |
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 63757c37e..9c747c058 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 = 727,
+ appVersion = 728,
# Increment this for every release.
- appMarketingVersion = (defaultText = "7.27.0~2024-01-02"),
+ appMarketingVersion = (defaultText = "7.28.0~2024-01-23"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index ec55cc491..7d79670c9 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '7.27'
+version: '7.28'
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.27/wekan-7.27-amd64.zip
- unzip wekan-7.27-amd64.zip
- rm wekan-7.27-amd64.zip
+ wget https://github.com/wekan/wekan/releases/download/v7.28/wekan-7.28-amd64.zip
+ unzip wekan-7.28-amd64.zip
+ rm wekan-7.28-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf