From ac82cb5221309427837a7dc1342a928a48c9d01c Mon Sep 17 00:00:00 2001 From: swag Date: Thu, 8 Jun 2023 21:04:10 -0400 Subject: [PATCH] Added the words 'for moderator' to hopefully make this more obvious --- lib/PostText/Controller/Remark.pm | 4 +++- lib/PostText/Controller/Thread.pm | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/PostText/Controller/Remark.pm b/lib/PostText/Controller/Remark.pm index 3c86400..48bdb85 100644 --- a/lib/PostText/Controller/Remark.pm +++ b/lib/PostText/Controller/Remark.pm @@ -72,7 +72,9 @@ sub flag($self) { $self->remark->flag($remark_id); - $self->flash(info => "Remark #$remark_id has been flagged. 🚩"); + $self->flash( + info => "Remark #$remark_id has been flagged for moderator. 🚩" + ); $self->redirect_to($redirect_url); } diff --git a/lib/PostText/Controller/Thread.pm b/lib/PostText/Controller/Thread.pm index 0eaae18..2f0e9a2 100644 --- a/lib/PostText/Controller/Thread.pm +++ b/lib/PostText/Controller/Thread.pm @@ -154,7 +154,9 @@ sub flag($self) { my $redirect_url = $self->url_for('threads_list')->fragment('info')->to_abs; $self->thread->flag($thread_id); - $self->flash(info => "Thread #$thread_id has been flagged. 🚩"); + $self->flash( + info => "Thread #$thread_id has been flagged for moderator. 🚩" + ); $self->redirect_to($redirect_url); }