Files
i2i/conf/transformConfig.json
2024-08-20 16:09:09 +08:00

29 lines
636 B
JSON

{
"fields": {
"id": {"from": "id"},
"login": {"from": "username"},
"full_name": {
"from": "name",
"fallback": "username"
},
"email": {
"template": "${username}@example.com"
},
"language": "zh-CN",
"is_admin": false,
"last_login": {
"func": "getCurrentTimestamp"
},
"created": {
"from": "create_date",
"func": "getFallbackTimestamp",
"params": {"defaultValue": "2023-01-01T00:00:00.000Z"}
},
"visibility": "public",
"followers_count": 0,
"following_count": 0,
"starred_repos_count": 0,
"username": {"from": "username"}
}
}