mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-07-30 08:25:45 +00:00
24 lines
534 B
TypeScript
24 lines
534 B
TypeScript
// Copyright 2017-2026 @pezkuwi/apps-routing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Route, TFunction } from './types.js';
|
|
|
|
import Component from '@pezkuwi/app-sudo';
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {
|
|
needsAccounts: true,
|
|
needsApi: [
|
|
'tx.sudo.setKey'
|
|
],
|
|
needsSudo: true
|
|
},
|
|
group: 'developer',
|
|
icon: 'unlock',
|
|
name: 'sudo',
|
|
text: t('nav.sudo', 'Sudo', { ns: 'apps-routing' })
|
|
};
|
|
}
|