1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-12 08:36:13 +01:00
phorge-phorge/src/applications/conpherence/conduit/ConpherenceEditConduitAPIMethod.php

20 lines
388 B
PHP
Raw Normal View History

<?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.');
}
}