-
Wekan REST API v8.00
+
Wekan REST API v8.01
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
@@ -3369,6 +3369,7 @@ System.out.println(response.toString());
"allowsCardSortingByNumber":
true,
"allowsShowLists":
true,
"allowsAssignedBy":
true,
+
"allowsShowListsOnMinicard":
true,
"allowsReceivedDate":
true,
"allowsStartDate":
true,
"allowsEndDate":
true,
@@ -9292,7 +9293,8 @@ System.out.println(response.toString());
],
"cardNumber":
0,
"showActivities":
true,
-
"hideFinishedChecklistIfItemsAreHidden":
true
+
"hideFinishedChecklistIfItemsAreHidden":
true,
+
"showListOnMinicard":
true
}
Responses
@@ -10998,7 +11000,8 @@ System.out.println(response.toString());
],
"cardNumber":
0,
"showActivities":
true,
-
"hideFinishedChecklistIfItemsAreHidden":
true
+
"hideFinishedChecklistIfItemsAreHidden":
true,
+
"showListOnMinicard":
true
}
Responses
@@ -16896,6 +16899,7 @@ UserSecurity
"allowsCardSortingByNumber":
true,
"allowsShowLists":
true,
"allowsAssignedBy":
true,
+
"allowsShowListsOnMinicard":
true,
"allowsReceivedDate":
true,
"allowsStartDate":
true,
"allowsEndDate":
true,
@@ -17221,6 +17225,13 @@ UserSecurity
Does the board allows requested by? |
+| allowsShowListsOnMinicard |
+boolean |
+true |
+none |
+Does the board allow showing list names on all minicards? |
+
+
| allowsReceivedDate |
boolean |
true |
@@ -17927,7 +17938,8 @@ UserSecurity
],
"cardNumber": 0,
"showActivities": true,
- "hideFinishedChecklistIfItemsAreHidden": true
+ "hideFinishedChecklistIfItemsAreHidden": true,
+ "showListOnMinicard": true
}
@@ -18209,6 +18221,13 @@ UserSecurity
none |
hide completed checklist? |
+
+| showListOnMinicard |
+boolean|null |
+false |
+none |
+show list name on minicard? |
+
Enumerated Values
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 6e194fd61..23ff7cbce 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v8.00
+ version: v8.01
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -2948,6 +2948,10 @@ definitions:
description: |
Does the board allows requested by?
type: boolean
+ allowsShowListsOnMinicard:
+ description: |
+ Does the board allow showing list names on all minicards?
+ type: boolean
allowsReceivedDate:
description: |
Does the board allows received date?
@@ -3058,6 +3062,7 @@ definitions:
- allowsCardSortingByNumber
- allowsShowLists
- allowsAssignedBy
+ - allowsShowListsOnMinicard
- allowsReceivedDate
- allowsStartDate
- allowsEndDate
@@ -3444,6 +3449,11 @@ definitions:
hide completed checklist?
type: boolean
x-nullable: true
+ showListOnMinicard:
+ description: |
+ show list name on minicard?
+ type: boolean
+ x-nullable: true
required:
- archived
- swimlaneId
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 536be63b4..8de01300a 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 = 800,
+ appVersion = 801,
# Increment this for every release.
- appMarketingVersion = (defaultText = "8.00.0~2025-10-11"),
+ appMarketingVersion = (defaultText = "8.01.0~2025-10-11"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index b2761eb4a..f98d7c917 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '8.00'
+version: '8.01'
base: core24
summary: Open Source kanban
description: |
@@ -203,9 +203,9 @@ parts:
# Cleanup
mkdir .build
cd .build
- wget https://github.com/wekan/wekan/releases/download/v8.00/wekan-8.00-amd64.zip
- unzip wekan-8.00-amd64.zip
- rm wekan-8.00-amd64.zip
+ wget https://github.com/wekan/wekan/releases/download/v8.01/wekan-8.01-amd64.zip
+ unzip wekan-8.01-amd64.zip
+ rm wekan-8.01-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf