Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 660 Bytes

File metadata and controls

50 lines (34 loc) · 660 Bytes

Display only Group in Assignee

Display only Group in Assignee.
担当者にグループのみを表示します。

Setting

Path Pattern

None

Insert Position

Bottom of issue form

Code

JavaScript

$(function() {
  // Remove users
  $('#issue_assigned_to_id>option:not([value=""])').remove();

  // Hide "Assign to me" link
  $('a.assign-to-me-link').remove();
})

Result

Before

before

After

after