mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix: connectors platform (#925)
This commit is contained in:
parent
27d81face1
commit
16ec018b71
4 changed files with 6 additions and 6 deletions
packages
connector-facebook/src
connector-github/src
connector-google/src
core/src/connectors
|
@ -27,7 +27,7 @@ const configTemplateFallback = 'Please check config-template.md file directory.'
|
|||
export const defaultMetadata: ConnectorMetadata = {
|
||||
target: 'facebook',
|
||||
type: ConnectorType.Social,
|
||||
platform: ConnectorPlatform.Web,
|
||||
platform: ConnectorPlatform.Universal,
|
||||
name: {
|
||||
en: 'Facebook',
|
||||
'zh-CN': 'Facebook',
|
||||
|
|
|
@ -18,7 +18,7 @@ const configTemplateFallback = 'Please check config-template.md file directory.'
|
|||
export const defaultMetadata: ConnectorMetadata = {
|
||||
target: 'github',
|
||||
type: ConnectorType.Social,
|
||||
platform: ConnectorPlatform.Web,
|
||||
platform: ConnectorPlatform.Universal,
|
||||
name: {
|
||||
en: 'GitHub',
|
||||
'zh-CN': 'GitHub',
|
||||
|
|
|
@ -18,7 +18,7 @@ const configTemplateFallback = 'Please check config-template.md file directory.'
|
|||
export const defaultMetadata: ConnectorMetadata = {
|
||||
target: 'google',
|
||||
type: ConnectorType.Social,
|
||||
platform: ConnectorPlatform.Web,
|
||||
platform: ConnectorPlatform.Universal,
|
||||
name: {
|
||||
en: 'Google',
|
||||
'zh-CN': 'Google',
|
||||
|
|
|
@ -46,7 +46,7 @@ const aliyunSmsConnector = {
|
|||
const facebookConnector = {
|
||||
id: 'facebook',
|
||||
target: 'facebook',
|
||||
platform: ConnectorPlatform.Web,
|
||||
platform: ConnectorPlatform.Universal,
|
||||
enabled: true,
|
||||
config: {},
|
||||
createdAt: 1_646_382_233_333,
|
||||
|
@ -54,7 +54,7 @@ const facebookConnector = {
|
|||
const githubConnector = {
|
||||
id: 'github',
|
||||
target: 'github',
|
||||
platform: ConnectorPlatform.Web,
|
||||
platform: ConnectorPlatform.Universal,
|
||||
enabled: true,
|
||||
config: {},
|
||||
createdAt: 1_646_382_233_555,
|
||||
|
@ -62,7 +62,7 @@ const githubConnector = {
|
|||
const googleConnector = {
|
||||
id: 'google',
|
||||
target: 'google',
|
||||
platform: ConnectorPlatform.Web,
|
||||
platform: ConnectorPlatform.Universal,
|
||||
enabled: false,
|
||||
config: {},
|
||||
createdAt: 1_646_382_233_000,
|
||||
|
|
Loading…
Add table
Reference in a new issue