Skip to content

Commit

Permalink
docs: update ts docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdellahitech committed Jan 30, 2024
1 parent 94c9dfd commit fa3b815
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ We invite developers to join us in our mission to bring AI and data integration
| [**Taleez**](./src/hrflow_connectors/connectors/taleez/README.md) | ATS | :white_check_mark: | *19/01/2022* | *04/09/2023* | :x: | :white_check_mark: | :white_check_mark: | :x: |
| **Talentlyft** | ATS | 🎯 | | | | | | |
| **TalentReef** | ATS | 🎯 | | | | | | |
| [**Talentsoft**](./src/hrflow_connectors/connectors/talentsoft/README.md) | HCM | :white_check_mark: | *19/04/2022* | *29/01/2024* | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: |
| [**Talentsoft**](./src/hrflow_connectors/connectors/talentsoft/README.md) | HCM | :white_check_mark: | *19/04/2022* | *31/01/2024* | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: |
| **Talentlink** | ATS | 🎯 | | |
| **TalentReef** | ATS | 🎯 | | |
| [**Teamtailor**](./src/hrflow_connectors/connectors/teamtailor/README.md) | ATS | :white_check_mark: | *06/10/2022* | *04/09/2023* | :x: | :white_check_mark: | :white_check_mark: | :x: |
Expand Down
12 changes: 10 additions & 2 deletions src/hrflow_connectors/connectors/talentsoft/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,16 @@ def format_info_ts_applicant(profile_hrflow: t.Dict) -> t.Dict:
phoneNumber=info_profile_hrflow["phone"],
email=info_profile_hrflow["email"],
address=info_profile_hrflow["location"]["text"],
city=info_profile_hrflow["location"].get("fields", {}).get("city", "") if info_profile_hrflow["location"].get("fields") else "",
postalCode=info_profile_hrflow["location"].get("fields", {}).get("postalCode", "") if info_profile_hrflow["location"].get("fields") else "",
city=(
info_profile_hrflow["location"].get("fields", {}).get("city", "")
if info_profile_hrflow["location"].get("fields")
else ""
),
postalCode=(
info_profile_hrflow["location"].get("fields", {}).get("postalCode", "")
if info_profile_hrflow["location"].get("fields")
else ""
),
civility=format_ts_applicant_civility(info_profile_hrflow["gender"]),
)
jobPreferences = dict(
Expand Down

0 comments on commit fa3b815

Please sign in to comment.