// region > helpers
 protected String currentUsersAtPath() {
   final ApplicationUser me = meService.me();
   final ApplicationTenancy tenancy = me.getTenancy();
   if (tenancy == null) {
     throw new IllegalStateException("No application tenancy defined");
   }
   return tenancy.getPath();
 }