mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
320498d3d0
Summary: Fixes T2213 Test Plan: Updated a pholio mock description. Observed that when I first showed details there was a round trip made. Toggled show / hide noting no more trips made to server. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, aran Maniphest Tasks: T2213 Differential Revision: https://secure.phabricator.com/D6801
27 lines
632 B
PHP
27 lines
632 B
PHP
<?php
|
|
|
|
final class PhabricatorApplicationTransactions extends PhabricatorApplication {
|
|
|
|
public function shouldAppearInLaunchView() {
|
|
return false;
|
|
}
|
|
|
|
public function canUninstall() {
|
|
return false;
|
|
}
|
|
|
|
public function getRoutes() {
|
|
return array(
|
|
'/transactions/' => array(
|
|
'edit/(?<phid>[^/]+)/'
|
|
=> 'PhabricatorApplicationTransactionCommentEditController',
|
|
'history/(?<phid>[^/]+)/'
|
|
=> 'PhabricatorApplicationTransactionCommentHistoryController',
|
|
'detail/(?<phid>[^/]+)/'
|
|
=> 'PhabricatorApplicationTransactionDetailController',
|
|
),
|
|
);
|
|
}
|
|
|
|
}
|
|
|