mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-16 00:38:38 +01:00
Summary: Ref T8116. A package has: - a publisher (like "Phacility"), from the previous revision; - a name (like "Arcanist"); - a package key (like "arcanist"). The package key is immutable, like the publisher key. This gives a package a full key like "phacility/arcanist". Policy stuff: - You must be able to view a publisher to view a package (currently, everyone can always see all publishers). - You must be able to edit a publisher to create a new package inside it. - Packages have separate view/edit permissions. This still does nothing interesting. Test Plan: {F1731663} Reviewers: chad Reviewed By: chad Subscribers: eadler Maniphest Tasks: T8116 Differential Revision: https://secure.phabricator.com/D16315
12 lines
288 B
PHP
12 lines
288 B
PHP
<?php
|
|
|
|
final class PhabricatorPackagesPackageEditController
|
|
extends PhabricatorPackagesPackageController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new PhabricatorPackagesPackageEditEngine())
|
|
->setController($this)
|
|
->buildResponse();
|
|
}
|
|
|
|
}
|