mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-26 14:38:19 +01:00
20 lines
390 B
PHP
20 lines
390 B
PHP
|
<?php
|
||
|
|
||
|
final class ProjectEditConduitAPIMethod
|
||
|
extends PhabricatorEditEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'project.edit';
|
||
|
}
|
||
|
|
||
|
public function newEditEngine() {
|
||
|
return new PhabricatorProjectEditEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht(
|
||
|
'Apply transactions to create a new project or edit an existing one.');
|
||
|
}
|
||
|
|
||
|
}
|