Skip to content

Commit

Permalink
Merge pull request #200 from MrSebastian/renovate/de.muenchen.oss-itm…
Browse files Browse the repository at this point in the history
…-java-codeformat-1.x

Update dependency de.muenchen.oss:itm-java-codeformat to v1.0.10
  • Loading branch information
MrSebastian authored Sep 3, 2024
2 parents 5312771 + d081af9 commit f6610aa
Show file tree
Hide file tree
Showing 6 changed files with 381 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@
<dependency>
<groupId>de.muenchen.oss</groupId>
<artifactId>itm-java-codeformat</artifactId>
<version>1.0.9</version>
<version>1.0.10</version>
</dependency>
</dependencies>
<configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
import java.util.UUID;

public record Task(@NotNull UUID id, @NotNull String title, @NotNull String description, String dueDate,
UUID creatorId, Person creator, UUID assigneeId, Person assignee) {
UUID creatorId, Person creator, UUID assigneeId, Person assignee) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
import java.util.UUID;

public record TaskOfPerson(@NotNull UUID id, @NotNull String title, @NotNull String description, String dueDate,
UUID creatorId, UUID assigneeId) {
UUID creatorId, UUID assigneeId) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@
* in the annotation e.g. {@link PreAuthorize}.
*/
public enum AuthoritiesEnum {
BACKEND_READ_THEENTITY, BACKEND_WRITE_THEENTITY, BACKEND_DELETE_THEENTITY,
BACKEND_READ_THEENTITY,
BACKEND_WRITE_THEENTITY,
BACKEND_DELETE_THEENTITY,
// add your authorities here and also add these new authorities to sso-authorisation.json.

TASK_ADMIN, TASK_READER
TASK_ADMIN,
TASK_READER

}
2 changes: 1 addition & 1 deletion frontend/apigateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
<dependency>
<groupId>de.muenchen.oss</groupId>
<artifactId>itm-java-codeformat</artifactId>
<version>1.0.9</version>
<version>1.0.10</version>
</dependency>
</dependencies>
<configuration>
Expand Down
Loading

0 comments on commit f6610aa

Please sign in to comment.