Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- class HTTPSWorker < CheckWorker
- sidekiq_options retry: false
-
- protected
- def module
- CryptCheck::Tls::Https
- end
-
- def type
- :https
- end
-
- def result(server, _, hash)
- hash[:hsts] = server.hsts
- hash
- end
- end
|