(serverId?: string)
| 137 | }; |
| 138 | |
| 139 | export const removeForwardAuth = async (serverId?: string) => { |
| 140 | const docker = await getRemoteDocker(serverId); |
| 141 | try { |
| 142 | const service = docker.getService(FORWARD_AUTH_SERVICE_NAME); |
| 143 | await service.remove(); |
| 144 | console.log("Forward Auth Removed ✅"); |
| 145 | } catch {} |
| 146 | }; |
| 147 | |
| 148 | export const isForwardAuthRunning = async ( |
| 149 | serverId?: string, |
no test coverage detected