Skip to content

Releases: victorhqc/julie-vic-wedding-backend

0.5.1

23 Mar 19:55
61c4f91
Compare
Choose a tag to compare

Fix CLI build in CI, nothing changed.

0.5.0

23 Mar 19:28
8364e64
Compare
Choose a tag to compare

New endpoint: POST /api/token/verify

The token expects { token: String } and it'll return 200 if it exists, and 401 if it's invalid. This endpoint will be useful to show/hide the RSVP option.

0.4.0

27 Feb 02:47
a4e06ae
Compare
Choose a tag to compare

Consistent /rsvp response to match request object.

From

{
  "confirmed_user": {
    "user_id": "56db95d8-ac79-46a4-b9f6-82edda2d07d7",
    "table_id": null,
    "will_attend": "yes+one",
    "created_at": 1582770812,
    "updated_at": 1582770812
  }
}

To

{
  "confirmed_user": {
    "user_id": "56db95d8-ac79-46a4-b9f6-82edda2d07d7",
    "table_id": null,
    "will_attend": true,
    "plus_one": false,
    "created_at": 1582770812,
    "updated_at": 1582770812
  }
}

0.3.2

27 Feb 02:03
c4021ab
Compare
Choose a tag to compare
  • Fix CORS implementation. Turns out, more work was needed there!

0.3.1

27 Feb 00:01
2ab0847
Compare
Choose a tag to compare
  • Fix CORS

0.3.0

26 Feb 21:54
88a9b2f
Compare
Choose a tag to compare
  • CORS handling
  • Better error handling

0.2.1

26 Feb 02:50
4999e36
Compare
Choose a tag to compare
  • Fix problem with Google authentication
  • Implement Redirect to client for Facebook

0.2.0

26 Feb 01:20
c3a8c99
Compare
Choose a tag to compare
  • Allow custom redirect to client URL after authorization.

First release

22 Feb 16:31
218c5da
Compare
Choose a tag to compare
  • RSVP Endpoint
  • Me endpoint
  • Google & Facebook authentication