[User | Trunk]: Reverse strings in isCurator method

This commit is contained in:
Konstantinos Triantafyllou 2020-11-04 16:30:18 +00:00
parent b7a94f6aa2
commit d854a452a2
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public class AuthorizationService {
*
* */
public String curator(String type) {
return mapType(type).toUpperCase() + "_CURATOR";
return "CURATOR_" + mapType(type).toUpperCase();
}
/**