Project

General

Profile

how to set default assignee to <<me>>

Added by weiquan zhang over 10 years ago

How to set default assignee to <<me>> when create new issues? that is, by default the new issue will be assigned to the one who creates it.


Replies (3)

RE: how to set default assignee to <<me>> - Added by Ivan Cenov over 10 years ago

there is no automatic way to do this.

RE: how to set default assignee to <<me>> - Added by Fernando Merlos about 22 hours ago

For those who may be interested, here is a possible workaround:

1. Edit the file app/views/issues/_form.html.erb
2. Add the line "$(".assign-to-me-link").click();" at the end of the document ready function

...
<%= javascript_tag do %>
$(document).ready(function(){
  ...
  $(".assign-to-me-link").click();
});
<% end %>

3. Restart your Redmine server

    (1-3/3)