Skip to content

Commit 01b5bf9

Browse files
committed
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
1 parent e3714c8 commit 01b5bf9

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/applications/fund/application/PhabricatorFundApplication.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ public function isPrototype() {
3030
return true;
3131
}
3232

33+
public function isDeprecated() {
34+
return true;
35+
}
36+
3337
public function getRemarkupRules() {
3438
return array(
3539
new FundInitiativeRemarkupRule(),

src/applications/phortune/application/PhabricatorPhortuneApplication.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ public function isPrototype() {
3030
return true;
3131
}
3232

33+
public function isDeprecated() {
34+
return true;
35+
}
36+
3337
public function getRoutes() {
3438
return array(
3539
'/phortune/' => array(

0 commit comments

Comments
 (0)