4

1

When a FogBugz user is creating a subcase, I'm receiving subcase number notification like "Added subcase 905"

I would rather like to receive message like "Added subcase: Text field box to Project A"

How do I change my settings to receive the subcase name notification rather than subcase number?

Fog Creek Case FC1963485

flag
Great idea! Currently, adding a subcase only adds the case number, but having the title of the case that was added (the title at the time of adding it anyways) would help make those sorts of edit events (and subsequent emails) more useful. +1 – cdeszaq Oct 20 2010 at 13:18

2 Answers

1

I've submitted a feature request. Please vote for the question (not this answer) to show your support for this feature.

link|flag
1

For me, it would help if the text would have a hover popup showing the case summary, like Case xxx in the case list and the edit text. It shows the current title.

I use this BugMonkey script (see this other question):

$("div.changes").each(function() {
  if ($(this).text().toLowerCase().indexOf("subcase") >= 0) {
    var words = $(this).text().split(' ');
    for (var i = 0; i < words.length; i++) {
      if (words[i].toLowerCase() == "subcase") {
        var casenr = words[i + 1].replace('.', '');
        $(this).wrapInner('<a href="default.asp?' + casenr + '" onmouseover="b1(' + casenr + ', this);"></a>');
        break;
      }
    }
  }
});

But that doesn't help for the notification mail.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.