initial theme implementation

This commit is contained in:
Athou
2013-05-28 22:40:54 +02:00
parent 9379cf8567
commit eb996560c2
9 changed files with 60 additions and 8 deletions

View File

@@ -50,6 +50,9 @@ public class UserSettings extends AbstractModel {
private boolean scrollMarks;
private boolean socialButtons;
@Column(length = 32)
private String theme;
@Lob
@Column(length = Integer.MAX_VALUE)
private String customCss;
@@ -126,4 +129,12 @@ public class UserSettings extends AbstractModel {
this.language = language;
}
public String getTheme() {
return theme;
}
public void setTheme(String theme) {
this.theme = theme;
}
}