From f0094fd14389622ed0bc8a5ca3f0ef9e6f9c4f17 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Fri, 2 Aug 2019 20:55:21 -0500 Subject: allow abandoning any thread; add `thread:leave`/`thread:part` bangtags --- app/lib/bangtags.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'app/lib') diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb index ec90f5014..e859b8f1b 100644 --- a/app/lib/bangtags.rb +++ b/app/lib/bangtags.rb @@ -16,6 +16,9 @@ class Bangtags 'permalink' => ['link'], 'cloudroot' => ['link'], 'blogroot' => ['link'], + + 'leave' => ['thread'], + 'part' => ['thread'], } @aliases = { @@ -264,6 +267,9 @@ class Bangtags chunk = nil next if cmd[1].nil? case cmd[1].downcase + when 'leave', 'part' + next if status.conversation_id.nil? + @account.mute_conversation!(status.conversation) when 'reall' if status.conversation_id.present? participants = Status.where(conversation_id: status.conversation_id) -- cgit