Browse Source

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

Fixes #12804
master
ThibG 4 years ago
committed by Eugen Rochko
parent
commit
817d4a9372
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      lib/mastodon/emoji_cli.rb

+ 8
- 1
lib/mastodon/emoji_cli.rb View File

@ -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…
Cancel
Save