mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
13 lines
279 B
PHP
13 lines
279 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorCalendarExportEditController
|
||
|
extends PhabricatorCalendarController {
|
||
|
|
||
|
public function handleRequest(AphrontRequest $request) {
|
||
|
return id(new PhabricatorCalendarExportEditEngine())
|
||
|
->setController($this)
|
||
|
->buildResponse();
|
||
|
}
|
||
|
|
||
|
}
|