Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,3 @@
Jenkins plugin to configure Paranoia Mode: a set of extra-paranoid security settings for Jenkins.

Check out the [wiki page](https://wiki.jenkins.io/display/JENKINS/Paranoia+Plugin) for more information.

## Known Issues

This plugin will disable the default styling of the login and signup pages.
This is currently being worked out over in [this pull request](https://github.com/jenkinsci/jenkins/pull/3710).
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@
<properties>
<revision>1.1</revision>
<changelist>-SNAPSHOT</changelist>
<!-- TODO: update to version integrating https://github.com/jenkinsci/jenkins/pull/3710 -->
<jenkins.version>2.138.2</jenkins.version>
<jenkins.version>2.156</jenkins.version>
<java.level>8</java.level>
</properties>
<name>Paranoia Plugin</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.kohsuke.accmod.restrictions.NoExternalUse;

@Restricted(NoExternalUse.class)
@Extension
@Extension(ordinal = -10000) // so we don't override the default header theme
public class DisableLoginAutocompleteDecorator extends SimplePageDecorator {
public boolean isEnabled() {
return ParanoiaConfiguration.get().isDisableLoginAutocomplete();
Expand Down