Differential D12619 Diff 30301 src/applications/calendar/application/PhabricatorCalendarApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/calendar/application/PhabricatorCalendarApplication.php
| Show First 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | return array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' | '(?:query/(?P<queryKey>[^/]+)/)?' | ||||
| => 'PhabricatorCalendarEventListController', | => 'PhabricatorCalendarEventListController', | ||||
| 'create/' | 'create/' | ||||
| => 'PhabricatorCalendarEventEditController', | => 'PhabricatorCalendarEventEditController', | ||||
| 'edit/(?P<id>[1-9]\d*)/' | 'edit/(?P<id>[1-9]\d*)/' | ||||
| => 'PhabricatorCalendarEventEditController', | => 'PhabricatorCalendarEventEditController', | ||||
| 'cancel/(?P<id>[1-9]\d*)/' | 'cancel/(?P<id>[1-9]\d*)/' | ||||
| => 'PhabricatorCalendarEventCancelController', | => 'PhabricatorCalendarEventCancelController', | ||||
| 'join/(?P<id>[1-9]\d*)/' | '(?P<action>join|decline|accept)/(?P<id>[1-9]\d*)/' | ||||
| => 'PhabricatorCalendarEventJoinController', | => 'PhabricatorCalendarEventJoinController', | ||||
| ), | ), | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getQuickCreateItems(PhabricatorUser $viewer) { | public function getQuickCreateItems(PhabricatorUser $viewer) { | ||||
| $items = array(); | $items = array(); | ||||
| Show All 11 Lines | |||||