ActionTypeを追加するように

This commit is contained in:
r-ca 2024-01-24 18:11:25 +09:00
parent 6e9606b050
commit 4b1ae7326b
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -76,7 +76,8 @@ public class LacertaVcsImpl implements LacertaVcs {
vcsLogEntity.documentId = documentId; vcsLogEntity.documentId = documentId;
vcsLogEntity.branchName = "master"; vcsLogEntity.branchName = "master";
vcsLogEntity.createdAt = new java.util.Date(); vcsLogEntity.createdAt = new java.util.Date();
vcsLogEntity.action = "ph-createDocument"; vcsLogEntity.actionType = ActionType.CREATE_DOCUMENT.getValue();
vcsLogEntity.action = "";
database.vcsLogDao().insert(vcsLogEntity); database.vcsLogDao().insert(vcsLogEntity);
} }