Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Commits
d81a58aa
Commit
d81a58aa
authored
3 years ago
by
Carsten Rose
Browse files
Options
Downloads
Patches
Plain Diff
Update self registration.
parent
936aeed9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!355
Refs #12615. Implements silent HEIC/HEIF conversion to png. Write a note in...
Pipeline
#5251
passed
3 years ago
Stage: build
Stage: selenium
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Documentation/UseCase.rst
+22
-18
22 additions, 18 deletions
Documentation/UseCase.rst
with
22 additions
and
18 deletions
Documentation/UseCase.rst
+
22
−
18
View file @
d81a58aa
...
...
@@ -37,8 +37,10 @@
Use Case
========
* Create the request pages and tt-content records.
* Copy the JSON form code to a new form (open Form in JSON mode).
To install the following use cases, please:
* Create the page and tt-content records.
* Copy the JSON form code to a new empty form (open Form in JSON mode).
.. _`self-registration`:
...
...
@@ -51,21 +53,21 @@ Concept:
* Form 'Request password reset link'
* Input: email address.
* Send a mail
with a
URL (incl. a token) which is time limited.
* Send a mail
to the given email address with a password reset
URL (incl. a token) which is time limited.
* Only send mail if the mail address is known
.
* Only send mail if the mail address is known
!
* If email is not found, the user should not be noticed.
* Create a new Person.auth token.
* Set Person.authExpired = NOW + ? days.
* Create a new
``
Person.auth
``
token.
* Set
``
Person.authExpired = NOW + ? days
``
.
*
Under
the URL
a
form 'Set password'
opens
.
*
When the user opens
the URL
, the
form 'Set password'
is shown
.
* The user types in
his
new password.
* The user types in
the
new password.
* On Save:
* If the FE account does not exist, it will be created.
* Set the FE user password.
* Clear Person.authExpired
* Clear
``
Person.authExpired
``.
Request password reset link
^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
...
@@ -73,15 +75,17 @@ Request password reset link
Table: Person
"""""""""""""
CREATE TABLE `Person` (
`id` int(11) UNSIGNED NOT NULL,
`lastName` varchar(64) NOT NULL DEFAULT '',
`firstName` varchar(64) NOT NULL DEFAULT '',
`email` varchar(128) NOT NULL,
`account` varchar(128) NOT NULL,
`auth` varchar(32) NOT NULL,
`authExpire` datetime NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 PACK_KEYS=1;
Person::
CREATE TABLE `Person` (
`id` int(11) UNSIGNED NOT NULL,
`lastName` varchar(64) NOT NULL DEFAULT '',
`firstName` varchar(64) NOT NULL DEFAULT '',
`email` varchar(128) NOT NULL,
`account` varchar(128) NOT NULL,
`auth` varchar(32) NOT NULL,
`authExpire` datetime NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 PACK_KEYS=1;
Page: reset
"""""""""""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment