proxy images through commafeed (#231)

This commit is contained in:
Athou
2013-06-22 21:36:55 +02:00
parent ab51b63b39
commit 52e4a2a0b7
10 changed files with 118 additions and 8 deletions

View File

@@ -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;
}
}