NCBACK-33 add email send
Test Workflow / test (push) Successful in 2s

This commit is contained in:
vladp
2026-01-19 19:26:59 +07:00
parent 4704f780e5
commit 4a8e561258
6 changed files with 62 additions and 258 deletions
@@ -36,8 +36,8 @@ public class User {
@Column(name = "email", nullable = false, length = 1024, unique = true)
private String email;
@Column(name = "email_verified", nullable = false)
private Boolean emailVerified = false;
@Column(name = "email_verified")
private boolean emailVerified = false;
@Column(name = "company")
private String company;
@@ -82,11 +82,6 @@ public class User {
@ToString.Exclude
private List<UserContent> userContents = new ArrayList<>();
@OneToMany(mappedBy = "user", cascade = CascadeType.ALL, orphanRemoval = true)
@JsonIgnore
@ToString.Exclude
private List<UserAction> userActions = new ArrayList<>();
@OneToMany(mappedBy = "user", cascade = CascadeType.ALL, orphanRemoval = true)
@JsonIgnore
@ToString.Exclude