Compare commits

...

1 Commits

1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@ public class AuthorizationService {
} else if(type.equals("ri") && communityMap) {
type = "community";
}
while (type.contains(".")) {
type = type.replace(".", "_");
}
return type;
}