-
Wekan REST API v6.81
+
Wekan REST API v6.82
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
@@ -15579,7 +15579,8 @@ Accept: application/json
"action": "string",
"isAdmin": true,
"isNoComments": true,
- "isCommentOnly": true
+ "isCommentOnly": true,
+ "isWorker": true
}';
const headers = {
'Content-Type':
'multipart/form-data',
@@ -15605,7 +15606,8 @@ fetch(
'/api/boards/{board}/members/{user}/add
"action": "string",
"isAdmin": true,
"isNoComments": true,
- "isCommentOnly": true
+ "isCommentOnly": true,
+ "isWorker": true
};
const headers = {
'Content-Type':'multipart/form-data',
@@ -15732,6 +15734,7 @@ to later change the permissions.
isAdmin: true
isNoComments: true
isCommentOnly: true
+isWorker: true
Parameters
@@ -15772,7 +15775,7 @@ to later change the permissions.
body |
string |
true |
-
the action value |
+
the action (needs to be add ) |
» isAdmin |
@@ -15795,6 +15798,13 @@ to later change the permissions.
true |
only enable comments |
+
+» isWorker |
+body |
+boolean |
+true |
+is the user a board worker |
+
Detailed descriptions
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index c16e49837..f5992c75b 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v6.81
+ version: v6.82
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -2185,7 +2185,8 @@ paths:
parameters:
- name: action
in: formData
- description: the action value
+ description: |
+ the action (needs to be `add`)
type: string
required: true
- name: isAdmin
@@ -2206,6 +2207,12 @@ paths:
only enable comments
type: boolean
required: true
+ - name: isWorker
+ in: formData
+ description: |
+ is the user a board worker
+ type: boolean
+ required: true
- name: board
in: path
description: |
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 7205f1960..d4b58ab38 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 = 681,
+ appVersion = 682,
# Increment this for every release.
- appMarketingVersion = (defaultText = "6.81.0~2023-03-26"),
+ appMarketingVersion = (defaultText = "6.82.0~2023-04-07"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 13f0bd0b8..f4b0d0251 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '6.81'
+version: '6.82'
base: core20
summary: Open Source kanban
description: |
@@ -169,9 +169,9 @@ parts:
# Cleanup
mkdir .build
cd .build
- wget https://github.com/wekan/wekan/releases/download/v6.81/wekan-6.81-amd64.zip
- unzip wekan-6.81-amd64.zip
- rm wekan-6.81-amd64.zip
+ wget https://github.com/wekan/wekan/releases/download/v6.82/wekan-6.82-amd64.zip
+ unzip wekan-6.82-amd64.zip
+ rm wekan-6.82-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf