Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

alternative auth methods: switch back to smartlink tab fails #131

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/general/guides/messaging-voters/messaging-voters.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,17 @@ both the email/sms of the voter and the voter authentication code. If no other
in the `__URL2__` URLs allows voters to authenticate without having to fill out
any web form. It's easier, but also more risky because anyone with this link
could use it to authenticate.
- `__URL_<alt-auth-method-id>__` and `__URL2_<alt-auth-method-id>__` if you are using [`alternative_auth_methods`](../../reference/election-creation-json/#census-alternative_auth_methods), with the `alt-auth-method-id`
[sluggified](https://docs.djangoproject.com/en/3.1/ref/utils/#django.utils.text.slugify).
- `__CODE__`: This is the authentication code. By default each time the
authentication codes are sent to a voter, a new code is generated and any old
codes are disabled. Alternatively, the code might be fixed / static if the
[`fixed-code` is set to `true`](../../reference/election-creation-json#census-config-fixed-code).
- `__OTL__`: Includes a One Time Link (OTL). This OTL accesses to an
authentication process that, once authenticated, shows the authentication code
to voters.
to voters. Only works if
[`support_otl_enabled`](../../reference/election-creation-json#support_otl_enabled)
is enabled.
- `__<extra_field>__`: Each voter has some voter related information
associated to it. You can use those extra fields by the
[sluggified](https://docs.djangoproject.com/en/3.1/ref/utils/#django.utils.text.slugify)
Expand Down
6 changes: 6 additions & 0 deletions docs/general/reference/election-creation-json.md
Original file line number Diff line number Diff line change
Expand Up @@ -2691,9 +2691,15 @@ both the email/sms of the voter and the voter authentication code. If no other
in the `__URL2__` URLs allows voters to authenticate without having to fill out
any web form. It's easier, but also more risky because anyone with this link
could use it to authenticate.
- `__URL_<alt-auth-method-id>__` and `__URL2_<alt-auth-method-id>__` if you are using [`alternative_auth_methods`](#census-alternative_auth_methods), with the `alt-auth-method-id`
[sluggified](https://docs.djangoproject.com/en/3.1/ref/utils/#django.utils.text.slugify).
- `__CODE__`: This is the authentication code. Each time the authentication
codes are sent to a voter, a new code is generated and any old codes are
disabled.
- `__OTL__`: Includes a One Time Link (OTL). This OTL accesses to an
authentication process that, once authenticated, shows the authentication code
to voters. Only works if [`support_otl_enabled`](#support_otl_enabled) is
enabled.
- `__<extra_field>__`: Each voter has some voter related information
associated to it. You can use those extra fields by the
[sluggified](https://docs.djangoproject.com/en/3.1/ref/utils/#django.utils.text.slugify)
Expand Down
Loading