-
Notifications
You must be signed in to change notification settings - Fork 20
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
docs(processWorker): add documentation for processes #368
Conversation
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wouldn't it be more useful to add a chapter "retrigger" in the other pages" and then split this list up ?
this would provide a better overview on the topic of interest and what of these steps are retriggerable ?
|
||
## VALIDATE_DID_DOCUMENT | ||
|
||
The process step `VALIDATE_DID_DOCUMENT` retrieves the did from the database and validates it via an universalREsolver to check that the structure is correct. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
REsolver ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sdFactory or sd Factory . can we align on one format. preferably the one we use everywhere
@@ -0,0 +1,25 @@ | |||
# Summary | |||
|
|||
The mailing process handles the sending of e-mails to users it therefor retrieves all entries of the `mailing_informations` with status `PENDING`. The process steps are the following: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The mailing process is responsible for sending emails to users. Therefore, it retrieves all entries from the mailing_informations
table with the status PENDING
.
The network registration process handles the synchronization of users, the handling of the callback logic for the osp and the user removal. The process steps are the following: | ||
|
||
```mermaid | ||
flowchart TD |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the connection missing ?
i assume it should be ?
A-->B
B--> |request successful| D
B--> |request not successful| E
D --> F
E --> F
Description
Add documentation for the processes and each process step
Why
To give an overview and explanation of the available processes and their functionality.
Issue
Refs: #351
Checklist