mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
19 lines
397 B
PHP
19 lines
397 B
PHP
|
<?php
|
||
|
|
||
|
final class CountdownEditConduitAPIMethod
|
||
|
extends PhabricatorEditEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'countdown.edit';
|
||
|
}
|
||
|
|
||
|
public function newEditEngine() {
|
||
|
return new PhabricatorCountdownEditEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht(
|
||
|
'Apply transactions to create a new countdown or edit an existing one.');
|
||
|
}
|
||
|
}
|