SoftwareSandbox / Fiazard

Learning project in which we try to make our sandwich ordering site better. This is the backend project, providing RESTful webservices with DropWizard.
Apache License 2.0
2 stars 10 forks source link

OpeningHours resource #6

Closed Sch3lp closed 9 years ago

Sch3lp commented 9 years ago

Returns opening hours (seems obvious right?). Resource /v1/openinghours that returns JSON:

[
{
    "day":"1",
    "hours":[{"from":"09:00","until":"12:00"},{"from":"12:30","until":"17:00"}]
},
{
    "day":"2",
    "hours":[{"from":"09:30","until":"12:30"}]
}
]

1 = monday. Because we're living in fucking Europe. This belongs in the Managing domain, I think.