File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
core/src/main/java/com/flowci/core Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1717package com .flowci .core .common .config ;
1818
1919import com .fasterxml .jackson .databind .ObjectMapper ;
20+ import com .flowci .core .agent .domain .LocalUnixAgentHost ;
21+ import com .flowci .core .agent .domain .SshAgentHost ;
2022import com .flowci .core .common .mongo .EncryptConverter ;
2123import com .flowci .core .common .mongo .VariableMapConverter ;
2224import com .flowci .core .config .domain .SmtpConfig ;
@@ -83,6 +85,8 @@ public MongoMappingContext mongoMappingContext() throws ClassNotFoundException {
8385 context .addEntity (AuthSecret .class );
8486 context .addEntity (RSASecret .class );
8587 context .addEntity (TokenSecret .class );
88+ context .addEntity (LocalUnixAgentHost .class );
89+ context .addEntity (SshAgentHost .class );
8690
8791 return context ;
8892 }
Original file line number Diff line number Diff line change @@ -27,5 +27,4 @@ public class GitSettings {
2727 private String gitUrl ;
2828
2929 private String secret ;
30-
3130}
You can’t perform that action at this time.
0 commit comments