mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
settings page and custom css for users
This commit is contained in:
@@ -6,6 +6,7 @@ import java.io.Serializable;
|
||||
public class Settings implements Serializable {
|
||||
|
||||
private String readingMode;
|
||||
private String customCss;
|
||||
|
||||
public String getReadingMode() {
|
||||
return readingMode;
|
||||
@@ -15,4 +16,12 @@ public class Settings implements Serializable {
|
||||
this.readingMode = readingMode;
|
||||
}
|
||||
|
||||
public String getCustomCss() {
|
||||
return customCss;
|
||||
}
|
||||
|
||||
public void setCustomCss(String customCss) {
|
||||
this.customCss = customCss;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user