Няма описание

Kirk Trombley f2536bcdd5 Component for a single tile on the calendar, also fixing the way the db will be mapped to requests преди 5 години
client f2536bcdd5 Component for a single tile on the calendar, also fixing the way the db will be mapped to requests преди 5 години
server f2536bcdd5 Component for a single tile on the calendar, also fixing the way the db will be mapped to requests преди 5 години
README.md d387885d39 Changing the API around a bit to be less annoying преди 5 години

README.md

Vacation Planner

B/c when2meet didn't serve this need

API

GET /vactaion/api/ Returns

{ "status": "healthy" }

GET /vacation/api/availability Returns

{
    "availability": [
        {
            "month": 6,
            "day": 1,
            "availability": [
                {
                    "name": "string",
                    "status": "yes/maybe/no/unknown"
                }
            ]
        }
    ],
    "lastUpdated": "string"
}

POST /vacation/api/availability Accepts

{
    "name": "string",
    "availability": [
        {
            "month": 6,
            "day": 1,
            "status": "yes/maybe/no/unknown"
        }
    ]
}

Returns 204 - If the data was accepted 400 - Malformed request