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

@@ -36,6 +36,9 @@ public class Settings implements Serializable {
@ApiProperty(value = "In expanded view, scroll through entries mark them as read", required = true)
private boolean scrollMarks;
@ApiProperty(value = "user's selected theme")
private String theme;
@ApiProperty(value = "user's custom css for the website")
private String customCss;
@@ -103,4 +106,12 @@ public class Settings implements Serializable {
this.language = language;
}
public String getTheme() {
return theme;
}
public void setTheme(String theme) {
this.theme = theme;
}
}