Add a way to mark Conversation (code comment) resolved (#11037)
* Add a way to mark Conversation (code comment) resolved mark Conversation is a way to mark a Conversation is stale or be solved. when it's marked as stale, will be hided like stale. all Pull Request writer , Offical Reviewers and poster can add or remove Conversation resolved mark. Signed-off-by: a1012112796 <[email protected]> * fix lint * Apply suggestions from code review * Add ResolveDoer * fix ui Co-Authored-By: Lauris BH <[email protected]> Co-Authored-By: 6543 <[email protected]> * change IsResolved to an function Add permission check in UpdateResolveConversation * Apply suggestions from code review * change return error for permisson check * add default message for deleted user * get issue message from comment * add migration for ``ResolveDoerID`` column another change: * block mark pending review as resolved because it's not necessary Co-authored-by: guillep2k <[email protected]> * change button color * resolve button size * fix code style * remove unusefull code Co-authored-by: guillep2k <[email protected]> Co-authored-by: Lauris BH <[email protected]> Co-authored-by: 6543 <[email protected]> Co-authored-by: guillep2k <[email protected]>
This commit is contained in:
co-authored by
Lauris BH
6543
guillep2k
parent
38d5f88a81
commit
1b86f174ce
@@ -2566,6 +2566,19 @@ $(document).ready(async () => {
|
||||
$(e).click();
|
||||
});
|
||||
|
||||
$('.resolve-conversation').on('click', function (e) {
|
||||
e.preventDefault();
|
||||
const id = $(this).data('comment-id');
|
||||
const action = $(this).data('action');
|
||||
const url = $(this).data('update-url');
|
||||
|
||||
$.post(url, {
|
||||
_csrf: csrf,
|
||||
action,
|
||||
comment_id: id,
|
||||
}).then(reload);
|
||||
});
|
||||
|
||||
buttonsClickOnEnter();
|
||||
searchUsers();
|
||||
searchTeams();
|
||||
|
||||
Reference in New Issue
Block a user