From abfd0c107c8003ba06a118625c49d22df553696f Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Fri, 14 Aug 2020 02:41:44 -0500 Subject: [Command Tags] Add #!notify toggle to allow toggling whether or not a post should be locally delivered to timelines/notifications --- app/javascript/flavours/glitch/components/status_content.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'app/javascript') diff --git a/app/javascript/flavours/glitch/components/status_content.js b/app/javascript/flavours/glitch/components/status_content.js index f03072ac8..0b3f3048b 100644 --- a/app/javascript/flavours/glitch/components/status_content.js +++ b/app/javascript/flavours/glitch/components/status_content.js @@ -313,9 +313,21 @@ export default class StatusContent extends React.PureComponent { ); + const quiet = (status.get('notify') === false) && ( +
+ + +
+ ); + const status_notice_wrapper = (
{unpublished} + {quiet} {edited} {local_only}
-- cgit