From af0bba38f4bdb6fca5f3717a43c6f768790c125f Mon Sep 17 00:00:00 2001 From: Diego Villanueva <98838739+UO283615@users.noreply.github.com> Date: Mon, 19 Feb 2024 22:27:31 +0100 Subject: [PATCH 1/4] Chore: Fixed the second section being seen as help --- docs/src/02_architecture_constraints.adoc | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/src/02_architecture_constraints.adoc b/docs/src/02_architecture_constraints.adoc index 1269b079..5f3b510a 100644 --- a/docs/src/02_architecture_constraints.adoc +++ b/docs/src/02_architecture_constraints.adoc @@ -3,9 +3,6 @@ ifndef::imagesdir[:imagesdir: ../images] [[section-architecture-constraints]] == Architecture Constraints - -[role="arc42help"] -**** The application must be developed according to some constraints that were defined by the professors. These constraints are meant to be the cornerstones of our project as they are mandatory and provide a baseline to work on. The following tables will define the constraints. From c17acef1e7123ba651a98a24412b14be62d1f0f3 Mon Sep 17 00:00:00 2001 From: Diego Villanueva <98838739+UO283615@users.noreply.github.com> Date: Mon, 19 Feb 2024 22:31:45 +0100 Subject: [PATCH 2/4] Chore: Tried to fix the problem in the diagram rendering --- docs/src/08_concepts.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/08_concepts.adoc b/docs/src/08_concepts.adoc index fe664376..b14a2f16 100644 --- a/docs/src/08_concepts.adoc +++ b/docs/src/08_concepts.adoc @@ -4,7 +4,7 @@ ifndef::imagesdir[:imagesdir: ../images] == Cross-cutting Concepts .Domain Model -These diagram is just a sketch, it should be replaced by a more accurate version upon discussion. +This is the first version of the diagram, it will be updated if needed. [plantuml,"ConceptsDomainModel1",png] ---- From 1c112b4577a30b8383228e2f81400ecf78af1761 Mon Sep 17 00:00:00 2001 From: Diego Villanueva <98838739+UO283615@users.noreply.github.com> Date: Mon, 19 Feb 2024 22:32:25 +0100 Subject: [PATCH 3/4] Chore: Simplified the diagram according to the error message --- docs/src/08_concepts.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/08_concepts.adoc b/docs/src/08_concepts.adoc index b14a2f16..93c16a5d 100644 --- a/docs/src/08_concepts.adoc +++ b/docs/src/08_concepts.adoc @@ -51,16 +51,16 @@ class Game { } -class Ranking << Singleton >> { +class Ranking { } User o--> Question -User "1" --> "1" UserStat +User --> UserStat Game o--> Question -Game "n" --> "n" User -Question "n" --> "n" Answer -Ranking "1" --> "n" User +Game --> User +Question --> Answer +Ranking --> User @enduml ---- From 00c0c09cb9cae548053e775254281c19fca61a28 Mon Sep 17 00:00:00 2001 From: Diego Villanueva <98838739+UO283615@users.noreply.github.com> Date: Mon, 19 Feb 2024 22:37:27 +0100 Subject: [PATCH 4/4] Chore: Added the full diagram again --- docs/src/08_concepts.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/08_concepts.adoc b/docs/src/08_concepts.adoc index 93c16a5d..b14a2f16 100644 --- a/docs/src/08_concepts.adoc +++ b/docs/src/08_concepts.adoc @@ -51,16 +51,16 @@ class Game { } -class Ranking { +class Ranking << Singleton >> { } User o--> Question -User --> UserStat +User "1" --> "1" UserStat Game o--> Question -Game --> User -Question --> Answer -Ranking --> User +Game "n" --> "n" User +Question "n" --> "n" Answer +Ranking "1" --> "n" User @enduml ----