1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-30 01:10:58 +01:00

Calendar event detail page should show host.

Summary: Ref T8027, Calendar event deatil page should show host.

Test Plan: Open calendar event, property list should include the host.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T8027

Differential Revision: https://secure.phabricator.com/D12683
This commit is contained in:
lkassianik 2015-05-03 15:29:42 -07:00
parent 4f5a0f2391
commit 15ebb81495

View file

@ -201,6 +201,10 @@ final class PhabricatorCalendarEventViewController
$invitee_list->addItem($item);
}
$properties->addProperty(
pht('Host'),
$viewer->renderHandle($event->getUserPHID()));
$properties->addProperty(
pht('Invitees'),
$invitee_list);