Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for getting gear attached to an activity #99

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Nov 12, 2023

  1. Add support for getting gear attached to an activity

    Uses the `gear-service` to get a list of JSON objects
    
    Example data:
    
    ```json
    [
        {
            "gearPk": 12345678,
            "uuid": "abcdef12345678abcdef12345678",
            "userProfilePk": 12345,
            "gearMakeName": "Other",
            "gearModelName": "Unknown Bike",
            "gearTypeName": "Bike",
            "gearStatusName": "active",
            "displayName": "gray",
            "customMakeModel": "Marin Headlands 1",
            "imageNameLarge": null,
            "imageNameMedium": null,
            "imageNameSmall": null,
            "dateBegin": "2022-02-18T00:00:00.0",
            "dateEnd": null,
            "maximumMeters": 643737.6000000001,
            "notified": true,
            "createDate": "2022-06-23T18:37:07.0",
            "updateDate": "2022-07-10T18:03:00.0"
        },
        {
            "gearPk": 12345679,
            "uuid": "bcdef12345678abcdef12345678a",
            "userProfilePk": 12345,
            "gearMakeName": "Other",
            "gearModelName": "Unknown Shoes",
            "gearTypeName": "Shoes",
            "gearStatusName": "active",
            "displayName": "bike",
            "customMakeModel": "Shimano RC3",
            "imageNameLarge": null,
            "imageNameMedium": null,
            "imageNameSmall": null,
            "dateBegin": "2022-05-17T00:00:00.0",
            "dateEnd": null,
            "maximumMeters": 643738.0,
            "notified": true,
            "createDate": "2022-06-23T18:39:00.0",
            "updateDate": "2022-07-10T18:03:00.0"
        }
    ]
    ```
    drewbrew committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    8268718 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7b8bcad View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    69cce89 View commit details
    Browse the repository at this point in the history