
Remove 'ISSUE_REFERRED' event_type in user project notification
@4afc0ebf062219d4b5af2e59a5ec5f13e9fa67ae
--- app/models/enumeration/EventType.java
+++ app/models/enumeration/EventType.java
... | ... | @@ -16,12 +16,12 @@ |
16 | 16 |
NEW_PULL_REQUEST_COMMENT("notification.type.new.simple.comment", 8), |
17 | 17 |
MEMBER_ENROLL_REQUEST("notification.type.member.enroll", 9), |
18 | 18 |
PULL_REQUEST_MERGED("notification.type.pullrequest.merged", 10), |
19 |
- ISSUE_REFERRED_FROM_COMMIT("notification.type.issue.referred", 11), |
|
19 |
+ ISSUE_REFERRED_FROM_COMMIT("notification.type.issue.referred.from.commit", 11), |
|
20 | 20 |
PULL_REQUEST_COMMIT_CHANGED("notification.type.pullrequest.commit.changed", 12), |
21 | 21 |
NEW_COMMIT("notification.type.new.commit", 13), |
22 | 22 |
PULL_REQUEST_REVIEWED("notification.type.pullrequest.reviewed", 14), |
23 | 23 |
PULL_REQUEST_UNREVIEWED("notification.type.pullrequest.unreviewed", 15), |
24 |
- ISSUE_REFERRED_FROM_PULL_REQUEST("notification.type.issue.referred", 16); |
|
24 |
+ ISSUE_REFERRED_FROM_PULL_REQUEST("notification.type.issue.referred.from.pullrequest", 16); |
|
25 | 25 |
|
26 | 26 |
private String descr; |
27 | 27 |
|
+++ conf/evolutions/default/60.sql
... | ... | @@ -0,0 +1,4 @@ |
1 | +# --- !Ups | |
2 | +DELETE FROM user_project_notification WHERE notification_type = 'ISSUE_REFERRED'; | |
3 | + | |
4 | +# --- !Downs |
--- conf/messages
+++ conf/messages
... | ... | @@ -293,7 +293,8 @@ |
293 | 293 |
notification.pullrequest.reviewed = PullRequest has been reviewed by {0} |
294 | 294 |
notification.pullrequest.unreviewed = PullRequest has been unreviewed by {0} |
295 | 295 |
notification.type.issue.assignee.changed = Changed Issue's Assignee |
296 |
-notification.type.issue.referred = Issue Reffered |
|
296 |
+notification.type.issue.referred.from.commit = Issue Referred from Commit |
|
297 |
+notification.type.issue.referred.from.pullrequest = Issue Referred from PullRequest |
|
297 | 298 |
notification.type.issue.state.changed = Changed Issue's State |
298 | 299 |
notification.type.member.enroll = Requests for joining projects |
299 | 300 |
notification.type.new.comment = New Comment on a Posting or a Issue |
--- conf/messages.ko
+++ conf/messages.ko
... | ... | @@ -293,7 +293,8 @@ |
293 | 293 |
notification.pullrequest.reviewed = {0} 님이 리뷰를 완료했습니다. |
294 | 294 |
notification.pullrequest.unreviewed = {0} 님이 리뷰를 취소했습니다. |
295 | 295 |
notification.type.issue.assignee.changed = 이슈 담당자 변경 |
296 |
-notification.type.issue.referred = 이슈가 언급 될 때 |
|
296 |
+notification.type.issue.referred.from.commit = 커밋에서의 이슈 언급 |
|
297 |
+notification.type.issue.referred.from.pullrequest = 코드 주고받기에서의 이슈 언급 |
|
297 | 298 |
notification.type.issue.state.changed = 이슈 상태 변경 |
298 | 299 |
notification.type.member.enroll = 멤버 등록 요청 |
299 | 300 |
notification.type.new.comment = 게시물과 이슈 새 댓글 등록 |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?