1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Mark UIExamples as a prototype

Summary: Ref T9103. This application is only useful for developing Phabricator, and in general is not kept "production ready". Mark it as a prototype.

Test Plan: visit /applications/, see it marked as prototype.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9103

Differential Revision: https://secure.phabricator.com/D13822
This commit is contained in:
Chad Little 2015-08-07 08:17:33 -07:00
parent f7b16c3bf9
commit af71eba5cc

View file

@ -30,6 +30,10 @@ final class PhabricatorUIExamplesApplication extends PhabricatorApplication {
return self::GROUP_DEVELOPER;
}
public function isPrototype() {
return true;
}
public function getApplicationOrder() {
return 0.110;
}