cds-snc / url-shortener

An API written in Python that shortens URLs
MIT License
4 stars 0 forks source link

fix: return the record `ttl` field #381

Closed patheard closed 1 year ago

patheard commented 1 year ago

Summary

Update the magic link get method to return the record's ttl so that it can be compared to the current time.

Prior to this fix, "ttl" in response["Item"] was False, which meant that the magic link remained valid up until DynamoDB cleaned up expired items.

Related