-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Affects Version/s: 5.2.8
-
Component/s: Email notifications
-
5.02
In JIRA Events page, the drop down box, there are two options for Issue Updated that is mapped to different template ids:

And if you create two Events using the first and after the second, you can't tell the difference in JIRA:

But they will be mapped to different templates in the database:
mysql> select * from jiraeventtype where name like '%severity%'; +-------+-------------+------------+-------------+------------+ | ID | TEMPLATE_ID | NAME | DESCRIPTION | event_type | +-------+-------------+------------+-------------+------------+ | 10000 | 17 | Severity 0 | | NULL | | 10001 | 2 | Severity 1 | | NULL | +-------+-------------+------------+-------------+------------+ 2 rows in set (0.00 sec)
And looking at the email-template-id-mappings.xml they are both set to the same event type:
<templatemapping id="2">
<name>Issue Updated</name>
<template>issueupdated.vm</template>
<templatetype>issueevent</templatetype>
</templatemapping>
<templatemapping id="17">
<name>Issue Updated</name>
<template>issueupdated.vm</template>
<templatetype>issueevent</templatetype>
</templatemapping>
- is cloned from
-
JRADEV-19816 Loading...