mirror of
https://github.com/wekan/wekan.git
synced 2025-04-20 12:07:11 -04:00
Merge branch 'nztqa-issue-1349' into devel
Fix: User with comment only permissions can remove another user from a card. Thanks to nztqa ! Closes #1349
This commit is contained in:
commit
162b15c0cd
2 changed files with 15 additions and 7 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,8 +1,16 @@
|
|||
# Upcoming Wekan release
|
||||
|
||||
This release fixes the following bugs:
|
||||
|
||||
* [Fix: User with comment only permissions can remove another user from a card](https://github.com/wekan/wekan/pull/1352).
|
||||
|
||||
Thanks to GitHub user nztqa for contributions.
|
||||
|
||||
# v0.59 2017-11-23 Wekan release.
|
||||
|
||||
This release fixes the following bugs:
|
||||
|
||||
* [Fix not working stdout logging by removing Winston logger](https://github.com/wekan/wekan/pull/1352).
|
||||
* [Remove incomplete logger fix](https://github.com/wekan/wekan/pull/1352).
|
||||
|
||||
Thanks to GitHub user pierreozoux for contributions.
|
||||
|
||||
|
|
|
@ -71,10 +71,10 @@ template(name="cardMemberPopup")
|
|||
.info
|
||||
h3= user.profile.fullname
|
||||
p.quiet @{{ user.username }}
|
||||
if currentUser.isBoardMember
|
||||
ul.pop-over-list
|
||||
li: a.js-remove-member {{_ 'remove-member-from-card'}}
|
||||
ul.pop-over-list
|
||||
if currentUser.isNotCommentOnly
|
||||
li: a.js-remove-member {{_ 'remove-member-from-card'}}
|
||||
|
||||
if $eq currentUser._id user._id
|
||||
with currentUser
|
||||
li: a.js-edit-profile {{_ 'edit-profile'}}
|
||||
if $eq currentUser._id user._id
|
||||
with currentUser
|
||||
li: a.js-edit-profile {{_ 'edit-profile'}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue