Added filter reactions settings; Change allowed emoji filter; Emoji module correct commit

This commit is contained in:
localhost_frssoft 2022-10-20 02:15:50 +03:00
parent 9cdac3e623
commit c5d552e7d8
11 changed files with 29 additions and 5 deletions

View file

@ -12,6 +12,7 @@ type Settings struct {
DarkMode bool `json:"dark_mode"`
AntiDopamineMode bool `json:"anti_dopamine_mode"`
HideUnsupportedNotifs bool `json:"hide_unsupported_notifs"`
AddReactionsFilter string `json:"add_reactions_filter"`
CSS string `json:"css"`
}
@ -28,6 +29,7 @@ func NewSettings() *Settings {
DarkMode: false,
AntiDopamineMode: false,
HideUnsupportedNotifs: false,
AddReactionsFilter: "",
CSS: "",
}
}