feat(comments): "reply to" above text input

This commit is contained in:
aayush262 2024-02-23 20:47:59 +05:30
parent 70c87b4067
commit 8ea6bf85b8
4 changed files with 24 additions and 4 deletions

View file

@ -154,6 +154,7 @@ enum class PrefName(val data: Pref) { //TODO: Split this into multiple files
TagsListNonAdult(Pref(Location.Irrelevant, Set::class, setOf<String>())),
MakeDefault(Pref(Location.Irrelevant, Boolean::class, true)),
FirstComment(Pref(Location.Irrelevant, Boolean::class, true)),
ReplyTo(Pref(Location.Irrelevant, Boolean::class, false)),
//Protected
DiscordToken(Pref(Location.Protected, String::class, "")),