Skip to content

Commit

Permalink
fix: connectors readme link generation in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas committed Sep 4, 2024
1 parent 0cd5718 commit 25c5bde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ We invite developers to join us in our mission to bring AI and data integration
| **Recruiterflow** | ATS | :dart: | | | :x: | :x: | :x: | | |
| **Recruitive** | ATS | :dart: | | | :x: | :x: | :x: | | |
| **Rippling** | HCM | :dart: | | | :x: | :x: | :x: | | |
| [**SAP SuccessFactors**](./src/hrflow_connectors/connectors/sap successfactors/README.md) | ATS | :white_check_mark: | *19/01/2022* | *04/09/2024* | :white_check_mark: | :white_check_mark: | :white_check_mark: | | |
| [**SAP SuccessFactors**](./src/hrflow_connectors/connectors/sapsuccessfactors/README.md) | ATS | :white_check_mark: | *19/01/2022* | *04/09/2024* | :white_check_mark: | :white_check_mark: | :white_check_mark: | | |
| **Sage HR** | HCM | :dart: | | | :x: | :x: | :x: | | |
| **Sage People** | HCM | :dart: | | | :x: | :x: | :x: | | |
| [**Salesforce**](./src/hrflow_connectors/connectors/salesforce/README.md) | CRM | :white_check_mark: | *03/08/2023* | *29/08/2024* | :white_check_mark: | :white_check_mark: | :white_check_mark: | | |
Expand Down
2 changes: 1 addition & 1 deletion src/hrflow_connectors/core/documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def update_root_readme(
name=model.name,
readme_link="./{base_connector_path}/{connector}/README.md".format(
base_connector_path=BASE_CONNECTOR_PATH.get().strip("/"),
connector=model.name.lower(),
connector=model.name.lower().replace(" ", ""),
),
type=model.type.value,
status=IN_PROGRESS_MARKUP if connector["in_progress"] else DONE_MARKUP,
Expand Down

0 comments on commit 25c5bde

Please sign in to comment.