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

Mensa Improvements #160

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c33317b
fix mermaid diagram
domai-tb Mar 21, 2024
ac35422
bashing henry for carring the campus app alone
domai-tb Mar 21, 2024
0cb65b0
prepare for aw mensa
domai-tb Mar 21, 2024
4843859
update mocks
domai-tb Mar 21, 2024
ff8088c
fix analysis warnings
domai-tb Mar 21, 2024
8cdb265
remove deprecated linting rules
domai-tb Mar 22, 2024
1731f47
use dependency injection in dish entity
domai-tb Mar 22, 2024
f9b2855
fix mensa tests
domai-tb Mar 22, 2024
5dcc4f9
clean up injection
domai-tb Mar 24, 2024
78e5083
fix the fix of linted problems
domai-tb Mar 24, 2024
c566ea1
first mensa appwrite implementation
domai-tb Mar 24, 2024
36cef99
fix other animation bugs
domai-tb Mar 24, 2024
b57b94f
first appwrite mensa data implementation
domai-tb Mar 24, 2024
0f353f2
Merge remote-tracking branch 'campus_app/master' into aw-mensa-data
domai-tb Mar 26, 2024
75f5c01
fix new repo tests
domai-tb Mar 29, 2024
97c3805
!! remove google play service requirement !!
domai-tb Mar 29, 2024
9efacdf
henkelmann, uniked & fixes
domai-tb Mar 29, 2024
6a79227
Merge remote-tracking branch 'campus_app/master' into mensa-improvement
domai-tb Apr 1, 2024
30e9291
fix misleading restaurant openings
domai-tb Apr 1, 2024
0601b6f
Merge remote-tracking branch 'campus_app/master' into mensa-improvement
domai-tb Apr 20, 2024
34b8020
next week on weekend
domai-tb Apr 20, 2024
46a9c58
migrate deprecated widget
domai-tb Apr 20, 2024
456b995
Merge branch 'master' into mensa-improvement
domai-tb Aug 17, 2024
3c4180a
sort members
domai-tb Aug 17, 2024
880ef62
add additional restaurants
domai-tb Aug 24, 2024
f01618a
show correct food information
domai-tb Aug 24, 2024
8326e87
final big fixes
domai-tb Aug 25, 2024
1be9f13
Remove unrelated universities. Will be re-added once we plan to suppo…
henry-herrmann Sep 22, 2024
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
Next Next commit
fix mermaid diagram
domai-tb committed Mar 21, 2024
commit c33317bef5aee445adaefc483c26a5ec0363ec70
8 changes: 4 additions & 4 deletions docs/wiki/Basic_Architecture.md
Original file line number Diff line number Diff line change
@@ -84,20 +84,20 @@ Let's start with a visualization of this architecture:

```mermaid
graph BT;
subgraph <h3>Infrastructure Layer
subgraph Infrastructure Layer
api{API} -->|Raw Data| rds(Remote Datasource)
db{DB} -->|Raw Data| lds(Local Datasource)
end
subgraph <h3>Domain Layer
subgraph Domain Layer
rds -->|Model| repo
lds -->|Model| repo
repo(Repository) -->|Entity| uc(Use Cases)
end
subgraph <h3>Application Layer
subgraph Application Layer
uc --> appl(Presentation <br> Logic Holder)
repo -.->|Entity| appl
end
subgraph <h3>Presentation Layer
subgraph Presentation Layer
appl --> wid(Widgets)
end
```