generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final version of 03_system_scope_and_context & quick fix in 12_glossary
- Loading branch information
Showing
7 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
flowchart TD | ||
el1[User] -.->|Interacts with| sis1(WIQ Webapp) | ||
subgraph system | ||
subgraph WIQ | ||
sis1 --> |Authenticate| sis2(Gateway Service) | ||
sis1 --> |Create user| sis2 | ||
sis1 --> |Get questions| sis5(Question Generation Service) | ||
end | ||
sis1 --> |Get questions| D[Wikidata] | ||
sis5 -.-> D[Wikidata] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
flowchart TD | ||
el1[User] -.->|Interacts with| sis1(WIQ Webapp) | ||
subgraph system | ||
subgraph WIQ | ||
sis1 --> |Authenticate| sis2(Gateway Service) | ||
sis1 --> |Create user| sis2 | ||
sis1 --> |Get questions| sis5(Question Generation Service) | ||
sis2 --> |Log in validation| sis3(Authentication service) | ||
sis2 --> |Sign up user| sis4(User service) | ||
sis3 --> db1[(MongoDB)] | ||
sis4 --> db1 | ||
end | ||
sis1 --> |Get questions| D[Wikidata] | ||
sis5 -.-> D[Wikidata] |