lucasmontano / magic-link

Generate, send and validate a magic link.
MIT License
105 stars 13 forks source link

[Service] Vote Confirmation #11

Closed lucasmontano closed 4 years ago

lucasmontano commented 4 years ago

As a user that sent its vote, I should be able to confirm my identification.

All votes received from #10 should be confirmed by a magic link. This service should consume the Queue as FIFO (First In First Out).

jbarbosaamancio commented 4 years ago

the function below generate a link with hash of identifier which may be send to vote confirmation i wait that help def generateLink(vote: Vote): hash = sha256(vote.identifier.encode()).hexdigest() return f'127.0.0.1:8000/{hash}'

lucasmontano commented 4 years ago

As we're changing the project scope, this issue is no longer necessary.