Add tootctl emoji purge (#10481)

Fix #10441
This commit is contained in:
Eugen Rochko 2019-04-06 04:47:16 +02:00 committed by GitHub
parent e007c7a99b
commit 6689e572f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,6 +66,12 @@ module Mastodon
say("Imported #{imported}, skipped #{skipped}, failed to import #{failed}", color(imported, skipped, failed))
end
desc 'purge', 'Remove all custom emoji'
def purge
CustomEmoji.in_batches.destroy_all
say('OK', :green)
end
private
def color(green, _yellow, red)