Skip to content

Commit

Permalink
SHIBUI-1743
Browse files Browse the repository at this point in the history
Creating branch for feature work
  • Loading branch information
chasegawa committed Aug 16, 2021
1 parent ae38896 commit 1c4fe32
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,16 @@ public class Group implements Owner {
@Column(name = "resource_id")
private String resourceId = UUID.randomUUID().toString();

@Column(name = "validation_regex")
private String validationRegex = "/*";

/**
* Define a Group object based on the user
*/
public Group(User user) {
resourceId = user.getUsername();
name = user.getUsername();
description = "default user-group";
description = "default user-group";new String().matches("");
}

@Override
Expand Down

0 comments on commit 1c4fe32

Please sign in to comment.