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

Modified readme #62

Merged
merged 2 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ From the user perspective, this application includes the following main features

**Testing:** The team tested their components using JUnit tests. These are built into Android Studio by default. That's why they are very popular in Android apps because they provide developers with the simplicity of writing precise tests and identify bugs early on. These tests can also serve as documentation for the code and that is useful in large codebases and systems.

**API:** The APIs were RESTfully designed using the Spring Boot Java backend which was initially hosted on the team's local computers, and the designed endpoints allowed easy access to all parts of the database. The input and output of each API is in the JSON format.
**API:** The APIs were RESTfully designed using the Spring Boot Java backend which is hosted on AWS, and the designed endpoints allowed easy access to all parts of the database. The input and output of each API is in the JSON format.

**Cloud:** The backend application was later hosted on an AWS instance in the cloud, where it works and can be accessed using the appropriate hostname.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ class CourseInputViewModel(
description.isNotBlank()
}


fun toUiModel(
id: String?,
assignments: Set<String>,
Expand Down
Loading