(req: Website.SSLReq)
| 125 | }; |
| 126 | |
| 127 | export const listLocalNodeSSL = (req: Website.SSLReq) => { |
| 128 | return http.postLocalNode<Website.SSLDTO[]>(`/websites/ssl/list`, req); |
| 129 | }; |
| 130 | |
| 131 | export const createSSL = (req: Website.SSLCreate) => { |
| 132 | return http.post<Website.SSLCreate>(`/websites/ssl`, req, TimeoutEnum.T_10M); |
nothing calls this directly
no test coverage detected