This is an automated email from the ASF dual-hosted git repository. abeizn pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git
commit b1240bed0c14d68b3a6fcf7db59385599f5394dc Author: Keon Amini <[email protected]> AuthorDate: Wed Jul 13 19:53:41 2022 -0500 fix: fixed broken image links in teams doc --- docs/UserManuals/TeamConfiguration.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/UserManuals/TeamConfiguration.md b/docs/UserManuals/TeamConfiguration.md index 4646ffa8..6ef12925 100644 --- a/docs/UserManuals/TeamConfiguration.md +++ b/docs/UserManuals/TeamConfiguration.md @@ -31,7 +31,7 @@ b. The actual api request. iii. After successful execution, the teams table is generated and the data can be seen in the database table teams. (Notes: how to connect to the database: mainly through host, port, username, password, and then through sql tools, such as sequal ace, datagrip and other data, of course you can also access through the command line mysql -h `ip` -u `username` -p -P `port`) - + ## Step 2 - Construct user tables (roster) @@ -52,11 +52,11 @@ b. The actual api request. iii. After successful execution, the users table is generated and the data can be seen in the database table users. - + iv. Generated the team_users table, you can see the data in the team_users table. - + ## Step 3 - Update users if you need If there is a problem with team_users association or data in users, just re-put users api interface, i.e. (b in step 2 above) @@ -64,7 +64,7 @@ If there is a problem with team_users association or data in users, just re-put ## Step 4 - Collect accounts accounts table is collected by users through devlake. You can see the accounts table information in the database. - + ## Step 5 - Automatically match existing accounts and users through api requests @@ -91,7 +91,7 @@ curl --location --request POST '127.0.0.1:8080/pipelines' \ b. After successful execution, the user_accounts table is generated, and you can see the data in table user_accounts. - + ## Step 6 - Get user_accountsr relationship After generating the user_accounts relationship, the user can get the associated data through the GET method to confirm whether the data user and account match correctly and whether the matched accounts are complete. @@ -103,7 +103,7 @@ b. The corresponding curl command: curl --location --request GET 'http://127.0.0.1:8080/plugins/org/user_account_mapping.csv' ``` - + c. You can also use sql statements to determine, here to provide a sql statement for reference only. ``` @@ -123,7 +123,7 @@ curl --location --request PUT 'http://127.0.0.1:8080/plugins/org/user_account_ma b. You can see that the data in the user_accounts table has been updated. - + **The above is the flow of user usage for the whole team feature.**
