Skip to content
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

Changes to make the diagram work in the documentation #46

Merged
merged 4 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/src/02_architecture_constraints.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
12 changes: 6 additions & 6 deletions docs/src/08_concepts.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]
----
Expand Down Expand Up @@ -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
----
Expand Down