mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-24 23:57:57 +00:00
22 lines
509 B
TypeScript
22 lines
509 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-scheduler';
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {
|
|
needsApi: [
|
|
'query.scheduler.agenda'
|
|
]
|
|
},
|
|
group: 'network',
|
|
icon: 'clock',
|
|
name: 'scheduler',
|
|
text: t('nav.scheduler', 'Scheduler', { ns: 'apps-routing' })
|
|
};
|
|
}
|