0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00
logto/packages/connectors/connector-mock-email/src/constant.ts
Gao Sun 6b322a537c
refactor: add connector packages
the initial commit to move all connector packages to the main
repo.
2023-04-01 15:53:14 +08:00

23 lines
655 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { ConnectorMetadata } from '@logto/connector-kit';
export const defaultMetadata: ConnectorMetadata = {
id: 'mock-email-service',
target: 'mock-mail',
platform: null,
name: {
en: 'Mock Mail Service',
'zh-CN': 'Mock 邮件服务',
'tr-TR': 'Mock Mail Servis',
ko: 'Mock Mail Service',
},
logo: './logo.svg',
logoDark: null,
description: {
en: 'The description of Mock Mail Service.',
'zh-CN': 'Mock 邮件服务的描述。',
'tr-TR': 'Mock Mail Servis açıklaması.',
ko: 'The description of Mock SMS Service.',
},
readme: './README.md',
configTemplate: './docs/config-template.json',
};