mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 16:16:14 +01:00
704afea281
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
19 lines
426 B
PHP
19 lines
426 B
PHP
<?php
|
|
|
|
final class PhabricatorPackagesPackageEditConduitAPIMethod
|
|
extends PhabricatorEditEngineAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'packages.package.edit';
|
|
}
|
|
|
|
public function newEditEngine() {
|
|
return new PhabricatorPackagesPackageEditEngine();
|
|
}
|
|
|
|
public function getMethodSummary() {
|
|
return pht(
|
|
'Apply transactions to create a new package or edit an existing one.');
|
|
}
|
|
|
|
}
|