mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
proxy images through commafeed (#231)
This commit is contained in:
@@ -32,6 +32,7 @@ public class ApplicationSettings extends AbstractModel {
|
||||
private boolean pubsubhubbub;
|
||||
private boolean feedbackButton = true;
|
||||
private String logLevel = Level.INFO.toString();
|
||||
private boolean imageProxyEnabled;
|
||||
|
||||
@Column(length = 255)
|
||||
private String announcement;
|
||||
@@ -173,4 +174,12 @@ public class ApplicationSettings extends AbstractModel {
|
||||
this.logLevel = logLevel;
|
||||
}
|
||||
|
||||
public boolean isImageProxyEnabled() {
|
||||
return imageProxyEnabled;
|
||||
}
|
||||
|
||||
public void setImageProxyEnabled(boolean imageProxyEnabled) {
|
||||
this.imageProxyEnabled = imageProxyEnabled;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user