Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/SE-TINF22B6/DHBWhub into …
Browse files Browse the repository at this point in the history
…profile-page
  • Loading branch information
JonasEbbinghaus25 committed Jun 11, 2024
2 parents 786f904 + 2f7e539 commit f9c4d16
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/RMMM.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
| ID | Category | Risk description | Probability | Damage/Impact | Risk Score (P x D) | Mitigation strategy | Indicator | Contingency plan | Responsible | Status | Update date |
| - | - | - | - | - | - | - | - | - | - | - | - |
| 1 | Organization | Team member leaves project unexpectedly | 2 | 6 | 12 | Reasons outside our influence | Worsening grades, absence | Split the work up, since we are 5 people; good documentation | Scrum Master | Open | 14.12.2023 |
| 1 | Organization | Team member leaves project unexpectedly | 2 | 6 | 12 | Reasons outside our influence | Worsening grades, absence | Split the work up, since we are 5 people; good documentation | Scrum Master | Closed | 11.06.2024 |
| 2 | Technical | Production error | 5 | 7 | 35 | Lots of Testing; Test/feature pipelines; Code Reviews | Customer feedback, Pipeline errors or systematic problems | Prioritizing the search and fix of the production pipeline | Product Owner | Open | 14.12.2023 |
| 3 | Organization | Not finishing the project as intended | 5 | 10 | 50 | Scrum Events (Refining the backlog, tracking the dates); Modular architekture (focus on main components) | Backlog still full when nearing the deadline | Focus on finishing the main unfinished components, not starting anything new | Scrum Master | Open | 14.12.2023 |
| 3 | Organization | Not finishing the project as intended | 5 | 10 | 50 | Scrum Events (Refining the backlog, tracking the dates); Modular architekture (focus on main components) | Backlog still full when nearing the deadline | Focus on finishing the main unfinished components, not starting anything new | Scrum Master | Closed | 11.06.2024 |
| 4 | Technical | Leak of data (passwords) | 4 | 8 | 32 | Encrypting serverside data (Hashing and Salting), using as minimal information as possible | Unusual activities, user complaints etcs | Checking the impact of the leak (how much, which information), informing impacted users | Whole team | Open | 14.12.2023 |
| 5 | Technical | Server outage (such as database) | 6 | 9 | 54 | Using multiple instances to switch between them | Slow or no response time, Reloading not possible | Rebooting the system or switch to other instances while fixing impacted one | Database-Team | Open | 14.12.2023 |
| 6 | Law | User posting copyright-protected images | 9 | 2 | 18 | Moderators or administrators, looking over several sections | User/copyright holder complaints | Removing such posts and enforcing our policy | Whole team | Open | 14.12.2023 |
| 7 | - | - | - | - | - | - | - | - | - | - | - |
| 8 | - | - | - | - | - | - | - | - | - | - | - |
| 7 | Technical | High loading/response time when retrieving data (between frontend and databse) | 6 | 6 | 36 | Try to find ways to restrict the need to retrieve new data or migrate the backend to new server provider | Long waiting time | Update the impacted components and reduce response time | Whole team | Open | 11.06.2024 |
| 8 | Law | User posting hateful/harassing content | 7 | 5 | 35 | Appointing community members who are responsible for identifying such posts and their users | Lots of reports or own sightings | Reporting function of posts | Whole Team | Open | 11.06.2024 |
| 9 | - | - | - | - | - | - | - | - | - | - | - |
| 10 | - | - | - | - | - | - | - | - | - | - | - |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class UserInformationProposal {

private int amountFollower;

private int age;
private Integer age;

private String description;

Expand Down
14 changes: 11 additions & 3 deletions src/main/web/src/scenes/User/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const UserPage = () => {
<span>{username}</span>
</div>
<div className="user-followers">
<span> Followers: {amountFollower}</span>
<span>Followers: {amountFollower}</span>
</div>
<div className="description-field">
{course !== null ? (
Expand All @@ -102,10 +102,18 @@ export const UserPage = () => {
)}
</div>
<div className="description-field">
<span> Age: {age}</span>
{age !== null ? (
<span>Age: {age}</span>
): (
<span>Age: Not set</span>
)}
</div>
<div className="description-field">
<span>Description: {description}</span>
{description !== null ? (
<span>Description: {description}</span>
): (
<span>Description: Not set</span>
)}
</div>
<button className="follow-button" onClick={handleFollow}>Follow</button>
</div>
Expand Down

0 comments on commit f9c4d16

Please sign in to comment.