mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 03:02:43 +01:00
2941b34acb
Summary: Ref T10978. This currently does almost nothing, but gets it in place so I can add stuff to it. Test Plan: Made a comment on a commit using the API. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10978 Differential Revision: https://secure.phabricator.com/D17178
20 lines
433 B
PHP
20 lines
433 B
PHP
<?php
|
|
|
|
final class DiffusionCommitEditConduitAPIMethod
|
|
extends PhabricatorEditEngineAPIMethod {
|
|
|
|
public function getAPIMethodName() {
|
|
return 'diffusion.commit.edit';
|
|
}
|
|
|
|
public function newEditEngine() {
|
|
return new DiffusionCommitEditEngine();
|
|
}
|
|
|
|
public function getMethodSummary() {
|
|
return pht(
|
|
'Apply transactions to edit an existing commit. This method can not '.
|
|
'create new commits.');
|
|
}
|
|
|
|
}
|