mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
25 lines
725 B
TypeScript
25 lines
725 B
TypeScript
|
import type { ConnectorMetadata } from '@logto/connector-kit';
|
||
|
import { ConnectorPlatform } from '@logto/connector-kit';
|
||
|
|
||
|
export const defaultMetadata: ConnectorMetadata = {
|
||
|
id: 'mock-social-connector',
|
||
|
target: 'mock-social',
|
||
|
platform: ConnectorPlatform.Universal,
|
||
|
name: {
|
||
|
en: 'Mock Social',
|
||
|
'zh-CN': 'Mock 社交登录',
|
||
|
ko: 'Mock Social',
|
||
|
'tr-TR': 'Mock Social',
|
||
|
},
|
||
|
logo: './logo.svg',
|
||
|
logoDark: null,
|
||
|
description: {
|
||
|
en: 'Social mock connector description',
|
||
|
'zh-CN': 'Mock 社交登录连接器的描述',
|
||
|
ko: 'Social mock connector description',
|
||
|
'tr-TR': 'Social mock connector description',
|
||
|
},
|
||
|
readme: './README.md',
|
||
|
configTemplate: './docs/config-template.json',
|
||
|
};
|