File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
java/io/unityfoundation/auth Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public UserPermissionsResponse permissions(@Body UserPermissionsRequest requestD
49
49
50
50
User user = userRepo .findByEmail (authentication .getName ()).orElse (null );
51
51
if (checkUserStatus (user )) {
52
- return new UserPermissionsResponse .Failure ("The users account has been disabled." );
52
+ return new UserPermissionsResponse .Failure ("The user's account has been disabled." );
53
53
}
54
54
55
55
Service service = serviceRepo .findById (requestDTO .serviceId ())
Original file line number Diff line number Diff line change 1
1
micronaut :
2
2
application :
3
3
name : unity-iam
4
+ server :
5
+ cors :
6
+ enabled : true
7
+ configurations :
8
+ web :
9
+ allowed-origins-regex : ' ^http:\/\/(.*?)localhost:3000$'
4
10
security :
5
11
authentication : bearer
6
12
enabled : true
You can’t perform that action at this time.
0 commit comments