@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class ConpherenceRoomEditController
4 extends ConpherenceController {
5
6 public function handleRequest(AphrontRequest $request) {
7 $id = $request->getURIData('id');
8 if (!$id) {
9 $this->requireApplicationCapability(
10 ConpherenceCreateRoomCapability::CAPABILITY);
11 }
12
13 return id(new ConpherenceEditEngine())
14 ->setController($this)
15 ->buildResponse();
16 }
17}