diff options
author | Malfurious <m@lfurio.us> | 2021-10-20 01:15:28 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-10-20 01:15:28 -0400 |
commit | e88b153336610e18732fbcc1d8ff3ac4e653d080 (patch) | |
tree | 1cddf528725f8698a73f39b282a96f954f7649c8 /app/view/datalsts.php | |
parent | 89e2b5a5eb46e3fe2c413ac856c2b46713ce5562 (diff) | |
download | scrott-e88b153336610e18732fbcc1d8ff3ac4e653d080.tar.gz scrott-e88b153336610e18732fbcc1d8ff3ac4e653d080.zip |
Add UI for explicit issue signoff
Active issue assignees will now have a button on issues to explicitly
'signoff' their assignment - that is, to affirmatively declare it done.
The use of this new action will allow assignees to signoff without
needing to close the issue as well. This is useful for multiple
assigned users collaborating on an issue.
Note that if an assignee chooses to close a ticket directly, they are
still automatically signed-off, as before.
To aid this feature, the low-level definition of an 'assigned user' is
updated to exclude users occupying an assignment slot, but which have
already signed-off.
Since the icon representing this action is the same as for closing a
ticket, the buttons enabling these two actions are now color-coded
wherever they appear.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to '')
-rw-r--r-- | app/view/datalsts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/datalsts.php b/app/view/datalsts.php index b80de78..298d036 100644 --- a/app/view/datalsts.php +++ b/app/view/datalsts.php @@ -163,7 +163,7 @@ require_once "view/formctrl.php"; <span class="glyphicon glyphicon-chevron-up"></span> </button> - <button type="submit" name="input[closeIssue]" class="btn btn-sm btn-default" title="Close issue"> + <button type="submit" name="input[closeIssue]" class="btn btn-sm btn-success" title="Close issue"> <span class="glyphicon glyphicon-ok"></span> </button> </div> |