mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
20 lines
474 B
JavaScript
20 lines
474 B
JavaScript
module.exports = function SettingsCtrl($scope, gettext) {
|
|
|
|
$scope.settingTabs = [
|
|
{
|
|
title: gettext('Keys'),
|
|
icon: 'fa-key fa-fw',
|
|
templateUrl: 'settings/adb-keys/adb-keys.jade'
|
|
},
|
|
{
|
|
title: gettext('General'),
|
|
icon: 'fa-gears fa-fw',
|
|
templateUrl: 'settings/general/general.jade'
|
|
},
|
|
//{
|
|
// title: gettext('Keys'),
|
|
// icon: 'fa-key fa-fw',
|
|
// templateUrl: 'settings/adb-keys/adb-keys.jade'
|
|
//}
|
|
]
|
|
}
|