mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-12 08:36:13 +01:00
20 lines
388 B
PHP
20 lines
388 B
PHP
|
<?php
|
||
|
|
||
|
final class ConpherenceEditConduitAPIMethod
|
||
|
extends PhabricatorEditEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'conpherence.edit';
|
||
|
}
|
||
|
|
||
|
public function newEditEngine() {
|
||
|
return new ConpherenceEditEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht(
|
||
|
'Apply transactions to create a new room or edit an existing one.');
|
||
|
}
|
||
|
|
||
|
}
|