Allow users to manage their notifications

The user can access this page without being logged in.
We identify the user through the "subscriptions_token" parameter and
show a list of the notifications that can be enable/disable.

We will return a 404 error in case someone accesses the page with a
non-existent token.

We also control the case that some anonymous user tries to access the
page without any token, by returning the CanCan::AccessDenied exception.
This commit is contained in:
taitus
2020-12-29 12:08:57 +01:00
parent 2bef215fc6
commit 6d9e4a9330
10 changed files with 83 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
.subscriptions-edit {
form {
max-width: $global-width * 7 / 12;
}
}