-
Wekan REST API v3.61
+
Wekan REST API v3.62
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
@@ -2837,6 +2837,7 @@ $.ajax({
"isActive": true,
"isNoComments": true,
"isCommentOnly": true,
+ "isWorker": true,
"permission": "string",
"color": "string"
}';
@@ -2947,6 +2948,7 @@ System.out.println(response.toString());
isActive: true
isNoComments: true
isCommentOnly: true
+
isWorker: true
permission: string
color: string
@@ -3013,6 +3015,13 @@ System.out.println(response.toString());
only enable comments (default false) |
+| » isWorker |
+body |
+boolean |
+false |
+only move cards, assign himself to card and comment (default false) |
+
+
| » permission |
body |
string |
@@ -3269,7 +3278,8 @@ System.out.println(response.toString());
"isAdmin": true,
"isActive": true,
"isNoComments": true,
- "isCommentOnly": true
+ "isCommentOnly": true,
+ "isWorker": true
}
],
"permission": "public",
@@ -3884,7 +3894,8 @@ $.ajax({
const inputBody = '{
"isAdmin": true,
"isNoComments": true,
- "isCommentOnly": true
+ "isCommentOnly": true,
+ "isWorker": true
}';
const headers = {
'Content-Type':'multipart/form-data',
@@ -3981,6 +3992,7 @@ System.out.println(response.toString());
isAdmin: true
isNoComments: true
isCommentOnly: true
+isWorker: true
Parameters
@@ -4037,6 +4049,13 @@ System.out.println(response.toString());
true |
CommentsOnly capability |
+
+| » isWorker |
+body |
+boolean |
+true |
+Worker capability |
+
Detailed descriptions
@@ -13608,7 +13627,8 @@ UserSecurity
"isAdmin":
true,
"isActive":
true,
"isNoComments":
true,
-
"isCommentOnly":
true
+
"isCommentOnly":
true,
+
"isWorker":
true
}
],
"permission":
"public",
@@ -14034,7 +14054,8 @@ UserSecurity
"isAdmin":
true,
"isActive":
true,
"isNoComments":
true,
-
"isCommentOnly":
true
+
"isCommentOnly":
true,
+
"isWorker":
true
}
@@ -14085,6 +14106,13 @@ UserSecurity
none |
Is the member only allowed to comment on the board |
+
+| isWorker |
+boolean |
+false |
+none |
+Is the member only allowed to move card, assign himself to card and comment |
+
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index ff519f445..838abde59 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.61
+ version: v3.62
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -211,6 +211,12 @@ paths:
only enable comments (default false)
type: boolean
required: false
+ - name: isWorker
+ in: formData
+ description: |
+ only move cards, assign himself to card and comment (default false)
+ type: boolean
+ required: false
- name: permission
in: formData
description: |
@@ -1534,6 +1540,12 @@ paths:
CommentsOnly capability
type: boolean
required: true
+ - name: isWorker
+ in: formData
+ description: |
+ Worker capability
+ type: boolean
+ required: true
- name: board
in: path
description: |
@@ -2215,6 +2227,10 @@ definitions:
description: |
Is the member only allowed to comment on the board
type: boolean
+ isWorker:
+ description: |
+ Is the member only allowed to move card, assign himself to card and comment
+ type: boolean
required:
- userId
- isAdmin
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 69a06d6a3..376a12dfb 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 = 363,
+ appVersion = 364,
# Increment this for every release.
- appMarketingVersion = (defaultText = "3.61.0~2020-01-03"),
+ appMarketingVersion = (defaultText = "3.62.0~2020-01-05"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,