mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 14:52:41 +01:00
Deprecate Fund and Phortune prototype applications
Summary: See T15726 Test Plan: Go to `/applications/` and see that Fund and Phortune say "Deprecated". Reviewers: O1 Blessed Committers, speck Reviewed By: O1 Blessed Committers, speck Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25533
This commit is contained in:
parent
e3714c86a7
commit
01b5bf9ea1
2 changed files with 8 additions and 0 deletions
|
@ -30,6 +30,10 @@ final class PhabricatorFundApplication extends PhabricatorApplication {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function isDeprecated() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public function getRemarkupRules() {
|
public function getRemarkupRules() {
|
||||||
return array(
|
return array(
|
||||||
new FundInitiativeRemarkupRule(),
|
new FundInitiativeRemarkupRule(),
|
||||||
|
|
|
@ -30,6 +30,10 @@ final class PhabricatorPhortuneApplication extends PhabricatorApplication {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function isDeprecated() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public function getRoutes() {
|
public function getRoutes() {
|
||||||
return array(
|
return array(
|
||||||
'/phortune/' => array(
|
'/phortune/' => array(
|
||||||
|
|
Loading…
Reference in a new issue