use url hash in voting link over query params

https://github.com/benadida/helios-server/pull/368
This commit is contained in:
Kiara Grouwstra 2023-01-25 14:11:07 +01:00
parent 8dec8af5e5
commit 4698655676
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
<ul>
<% @votes.each do |vote| %>
<li>
<a href="https://stemmen.bij1.org/helios/e/<%= vote.election_slug %>/vote?voter_id=<%= vote.voter_login_id %>&password=<%= vote.voter_password %>">
<a href="https://stemmen.bij1.org/helios/e/<%= vote.election_slug %>/vote#id_voter_id=<%= vote.voter_login_id %>&id_password=<%= vote.voter_password %>">
<%= vote.election_slug %>
</a>
</li>