diff options
author | Yorhel <git@yorhel.nl> | 2020-09-27 12:53:14 +0200 |
---|---|---|
committer | Yorhel <git@yorhel.nl> | 2020-09-27 12:53:16 +0200 |
commit | 4d021b9a0c9db93b8a9ca710a532c9409dc57391 (patch) | |
tree | b18adb02ea223ea9fd8c7c7413b490667fdc5243 | |
parent | ca277f93fa64cb6bd9e6f3dc022f330c23accf98 (diff) |
Report: Add option to report NSFW image
Images can't be reported directly, yet, but this ought to help as well.
-rw-r--r-- | elm/Report.elm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/elm/Report.elm b/elm/Report.elm index 6553043b..342b37da 100644 --- a/elm/Report.elm +++ b/elm/Report.elm @@ -56,7 +56,7 @@ reasons = , submit = True , msg = nomsg } - , { label = "Off-topic / wrong board" + , { label = "Off-topic" , vis = objtype "tw" , submit = True , msg = nomsg @@ -79,6 +79,11 @@ reasons = , text " so that others may be able to help you." ] } + , { label = "Unmarked or improperly flagged NSFW image" + , vis = objtype "vc" + , submit = True + , msg = nomsg + } , { label = "Incorrect information" , vis = editable , submit = False |