-
Wekan REST API v5.42
+
Wekan REST API v5.43
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
@@ -3554,6 +3554,7 @@ System.out.println(response.toString());
"allowsComments":
true,
"allowsDescriptionTitle":
true,
"allowsDescriptionText":
true,
+
"allowsCardNumber":
true,
"allowsActivities":
true,
"allowsLabels":
true,
"allowsCreator":
true,
@@ -9138,7 +9139,8 @@ System.out.println(response.toString());
],
"linkId_gantt": [
"string"
- ]
+ ],
+
"cardNumber":
0
}
Responses
@@ -18346,6 +18348,7 @@ UserSecurity
"allowsComments":
true,
"allowsDescriptionTitle":
true,
"allowsDescriptionText":
true,
+
"allowsCardNumber":
true,
"allowsActivities":
true,
"allowsLabels":
true,
"allowsCreator":
true,
@@ -18551,6 +18554,13 @@ UserSecurity
Does the board allows description text? |
+allowsCardNumber |
+boolean |
+true |
+none |
+Does the board allows card numbers? |
+
+
allowsActivities |
boolean |
true |
@@ -19302,7 +19312,8 @@ UserSecurity
],
"linkId_gantt": [
"string"
- ]
+ ],
+ "cardNumber": 0
}
@@ -19563,6 +19574,13 @@ UserSecurity
none |
ID of card which is the parent link in gantt view |
+
+cardNumber |
+number¦null |
+false |
+none |
+A boardwise sequentially increasing number that is assigned to every newly created card |
+
Enumerated Values
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 05dd02b7e..5c51c114f 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v5.42
+ version: v5.43
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -2770,6 +2770,10 @@ definitions:
description: |
Does the board allows description text?
type: boolean
+ allowsCardNumber:
+ description: |
+ Does the board allows card numbers?
+ type: boolean
allowsActivities:
description: |
Does the board allows comments?
@@ -2888,6 +2892,7 @@ definitions:
- allowsComments
- allowsDescriptionTitle
- allowsDescriptionText
+ - allowsCardNumber
- allowsActivities
- allowsLabels
- allowsCreator
@@ -3268,6 +3273,12 @@ definitions:
type: string
x-nullable: true
x-nullable: true
+ cardNumber:
+ description: |
+ A boardwise sequentially increasing number that is assigned
+ to every newly created card
+ type: number
+ x-nullable: true
required:
- archived
- swimlaneId
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index ec46da460..aee5d502f 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 = 542,
+ appVersion = 543,
# Increment this for every release.
- appMarketingVersion = (defaultText = "5.42.0~2021-08-01"),
+ appMarketingVersion = (defaultText = "5.43.0~2021-08-03"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index a00ee29bf..b421b632d 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '5.42'
+version: '5.43'
summary: The open-source kanban
description: |
Wekan is an open-source and collaborative kanban board application.