social sharing buttons

This commit is contained in:
Athou
2013-05-01 18:06:18 +02:00
parent 451979589c
commit 07fb0e712b
9 changed files with 79 additions and 6 deletions

View File

@@ -36,6 +36,8 @@ public class UserSettings extends AbstractModel {
private boolean showRead;
private boolean socialButtons;
@Lob
@Column(length = Integer.MAX_VALUE)
private String customCss;
@@ -80,4 +82,12 @@ public class UserSettings extends AbstractModel {
this.showRead = showRead;
}
public boolean isSocialButtons() {
return socialButtons;
}
public void setSocialButtons(boolean socialButtons) {
this.socialButtons = socialButtons;
}
}