mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
pubsubhubbub support is now optional
This commit is contained in:
@@ -15,24 +15,17 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||
public class ApplicationSettings extends AbstractModel {
|
||||
|
||||
private String publicUrl;
|
||||
|
||||
/**
|
||||
* Wether registrations are open
|
||||
*/
|
||||
private boolean allowRegistrations = false;
|
||||
|
||||
private String googleAnalyticsTrackingCode;
|
||||
|
||||
private String googleClientId;
|
||||
private String googleClientSecret;
|
||||
private int backgroundThreads = 3;
|
||||
|
||||
private String smtpHost;
|
||||
private int smtpPort;
|
||||
private boolean smtpTls;
|
||||
private String smtpUserName;
|
||||
private String smtpPassword;
|
||||
|
||||
private boolean pubsubhubbub;
|
||||
private boolean feedbackButton = true;
|
||||
|
||||
@Column(length = 255)
|
||||
@@ -143,4 +136,12 @@ public class ApplicationSettings extends AbstractModel {
|
||||
this.feedbackButton = feedbackButton;
|
||||
}
|
||||
|
||||
public boolean isPubsubhubbub() {
|
||||
return pubsubhubbub;
|
||||
}
|
||||
|
||||
public void setPubsubhubbub(boolean pubsubhubbub) {
|
||||
this.pubsubhubbub = pubsubhubbub;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user