1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 21:32:43 +01:00

Calendar event transaction should show a calendar icon in Feed

Summary: Fixes T8010, Calendar event transaction should show a calendar icon in Feed.

Test Plan: Update a Calendar event, check the Feed, transaction item should have a calendar icon in bottom left corner of the box.

Reviewers: epriestley, chad, #blessed_reviewers

Reviewed By: chad, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T8010

Differential Revision: https://secure.phabricator.com/D12642
This commit is contained in:
lkassianik 2015-05-01 08:59:07 -07:00
parent 94299c0a6b
commit e11f0b6c24

View file

@ -8,6 +8,10 @@ final class PhabricatorCalendarEventPHIDType extends PhabricatorPHIDType {
return pht('Event'); return pht('Event');
} }
public function getPHIDTypeApplicationClass() {
return 'PhabricatorCalendarApplication';
}
public function newObject() { public function newObject() {
return new PhabricatorCalendarEvent(); return new PhabricatorCalendarEvent();
} }