瀏覽代碼

Add --remote-only option to emoji purge (#12810)

Fixes #12804
master^2
ThibG 4 年之前
committed by Eugen Rochko
父節點
當前提交
817d4a9372
共有 1 個文件被更改,包括 8 次插入1 次删除
  1. +8
    -1
      lib/mastodon/emoji_cli.rb

+ 8
- 1
lib/mastodon/emoji_cli.rb 查看文件

@@ -72,9 +72,16 @@ module Mastodon
say("Imported #{imported}, skipped #{skipped}, failed to import #{failed}", color(imported, skipped, failed))
end

option :remote_only, type: :boolean
desc 'purge', 'Remove all custom emoji'
long_desc <<-LONG_DESC
Removes all custom emoji.

With the --remote-only option, only remote emoji will be deleted.
LONG_DESC
def purge
CustomEmoji.in_batches.destroy_all
scope = options[:remote_only] ? CustomEmoji.remote : CustomEmoji
scope.in_batches.destroy_all
say('OK', :green)
end



Loading…
取消
儲存