dev add additional info user
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2026-03-25 13:08:10 +07:00
parent c1782cf59b
commit 8eb0772196
@@ -102,6 +102,8 @@ public class TariffService {
}
private TariffDTO convertToDTO(Tariff tariff) {
TariffTimeTerm tariffTerm = tariff.getTariffTerm();
return new TariffDTO(
tariff.getId(),
tariff.getType(),
@@ -111,7 +113,7 @@ public class TariffService {
tariff.getMaxFilesCount(),
tariff.getDiskSize(),
tariff.getMaxUsers(),
tariff.getTariffTerm().name()
tariffTerm == null ? "" : tariffTerm.name()
);
}