mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 23:32:40 +01:00
24104be67d
Summary: Ref T10411. This cleans up / modernizes things and lets me get an `almanac.network.edit` API in the future. This is mostly straightforward, except that Services have an extra "choose type" screen in front of them. Test Plan: - Created and edited Almanac networks, services, and devices. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10411 Differential Revision: https://secure.phabricator.com/D15326
11 lines
250 B
PHP
11 lines
250 B
PHP
<?php
|
|
|
|
final class AlmanacNetworkEditController extends AlmanacNetworkController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new AlmanacNetworkEditEngine())
|
|
->setController($this)
|
|
->buildResponse();
|
|
}
|
|
|
|
}
|