-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added settings for caldav ssl verification #112
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #112 +/- ##
==========================================
- Coverage 93.47% 93.22% -0.26%
==========================================
Files 23 24 +1
Lines 1150 1166 +16
==========================================
+ Hits 1075 1087 +12
- Misses 75 79 +4
☔ View full report in Codecov by Sentry. |
modoboa_radicale/forms.py
Outdated
(True, ugettext_lazy("Verify")), | ||
(False, ugettext_lazy("Skip verification")), | ||
("path", ugettext_lazy("Provide CA bundle")) | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bad indentation and I don't think it's a good idea to mix types here. Use either strings or integers for values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Like that ?
I don't see the bad indent though
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's better.
And the last parenthesis should be moved to start of line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done :D
Provide users a way to disable ssl cert verification or provide a CA bundle as a trusted one. This enables user with self-signed certs to use the extension.