Files
pezkuwi-apps/packages/apps-routing/src/whitelist.ts
T

23 lines
556 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-whitelist';
export default function create (t: TFunction): Route {
return {
Component,
display: {
needsAccounts: true,
needsApi: [
'tx.whitelist.removeWhitelistedCall'
]
},
group: 'governance',
icon: 'list-check',
name: 'whitelist',
text: t('nav.whitelist', 'Whitelist', { ns: 'apps-routing' })
};
}