mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-01 15:08:14 +02:00
Summary: Depends on D19826. Ref T13216. We have a fair number of options here; add some groups so the "Build" stuff can go in a little subcategory and such. Test Plan: {F6020896} Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13216 Differential Revision: https://secure.phabricator.com/D19827
16 lines
328 B
PHP
16 lines
328 B
PHP
<?php
|
|
|
|
final class DiffusionRepositoryManagementIntegrationsPanelGroup
|
|
extends DiffusionRepositoryManagementPanelGroup {
|
|
|
|
const PANELGROUPKEY = 'integrations';
|
|
|
|
public function getManagementPanelGroupLabel() {
|
|
return pht('Integrations');
|
|
}
|
|
|
|
public function getManagementPanelGroupOrder() {
|
|
return 4000;
|
|
}
|
|
|
|
}
|