Wekan REST API v3.90
+Wekan REST API v3.91
@@ -14376,7 +14381,17 @@ UserSecurity "sort": 0, "subtaskSort": 0, "type": "string", - "linkedId": "string" + "linkedId": "string", + "vote": { + "question": "string", + "positive": [ + "string" + ], + "negative": [ + "string" + ], + "end": "string" + } } @@ -14595,6 +14610,13 @@ UserSecurityScroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
Enumerated Values
@@ -14708,6 +14730,62 @@ UserSecurity +CardsVote
+ +{
+ "question": "string",
+ "positive": [
+ "string"
+ ],
+ "negative": [
+ "string"
+ ],
+ "end": "string"
+}
+
+
+Properties
+| Name | +Type | +Required | +Restrictions | +Description | +
|---|---|---|---|---|
| question | +string | +true | +none | +none | +
| positive | +[string] | +false | +none | +list of members (user IDs) | +
| negative | +[string] | +false | +none | +list of members (user IDs) | +
| end | +string | +false | +none | +none | +
CardsCustomfields
{}
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 003c260f6..739e37425 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v3.90
+ version: v3.91
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -2523,6 +2523,11 @@ definitions:
ID of the linked card
type: string
x-nullable: true
+ vote:
+ description: |
+ vote object, see below
+ $ref: "#/definitions/CardsVote"
+ x-nullable: true
required:
- archived
- swimlaneId
@@ -2532,6 +2537,29 @@ definitions:
- userId
- sort
- type
+ CardsVote:
+ type: object
+ properties:
+ question:
+ type: string
+ positive:
+ description: |
+ list of members (user IDs)
+ type: array
+ items:
+ type: string
+ x-nullable: true
+ negative:
+ description: |
+ list of members (user IDs)
+ type: array
+ items:
+ type: string
+ x-nullable: true
+ end:
+ type: string
+ required:
+ - question
CardsCustomfields:
type: object
ChecklistItems:
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 65edd1dde..d1ed39678 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 = 390,
+ appVersion = 391,
# Increment this for every release.
- appMarketingVersion = (defaultText = "3.90.0~2020-04-06"),
+ appMarketingVersion = (defaultText = "3.91.0~2020-04-08"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,