mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
855e085c6f
Summary: Fixes T2698. When applications are installed, their Conduit calls should drop out. This will also let us land Releeph without exposing Conduit calls. Test Plan: - Viewed Conduit console; uninstalled some applications and verified their calls dropped out. - Tried to make an uninstalled call; got an appropriate error. Reviewers: edward, btrahan Reviewed By: edward CC: aran Maniphest Tasks: T2698 Differential Revision: https://secure.phabricator.com/D5302
14 lines
230 B
PHP
14 lines
230 B
PHP
<?php
|
|
|
|
/**
|
|
* @group conduit
|
|
*/
|
|
abstract class ConduitAPI_macro_Method extends ConduitAPIMethod {
|
|
|
|
public function getApplication() {
|
|
return PhabricatorApplication::getByClass(
|
|
'PhabricatorApplicationMacro');
|
|
}
|
|
|
|
|
|
}
|