dev #435

Merged
ysCha merged 2 commits from dev into dev-deploy 2026-03-19 15:27:34 +09:00
Showing only changes of commit 4db2ddfd83 - Show all commits

View File

@ -71,7 +71,12 @@ public class AdminUserConfiguration implements JobExecutionListener {
@Bean
public ItemProcessor<AdminUserSyncResponse, AdminUserSyncResponse> adminUserProcessor() {
return item -> item;
return item -> {
if (item.getCategory() != null && item.getCategory().length() > 20) {
item.setCategory(item.getCategory().substring(0, 20));
}
return item;
};
}
@Bean