about summary refs log tree commit diff
path: root/lib/mastodon/cache_cli.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mastodon/cache_cli.rb')
-rw-r--r--lib/mastodon/cache_cli.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/mastodon/cache_cli.rb b/lib/mastodon/cache_cli.rb
new file mode 100644
index 000000000..e9b6667b3
--- /dev/null
+++ b/lib/mastodon/cache_cli.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+require_relative '../../config/boot'
+require_relative '../../config/environment'
+require_relative 'cli_helper'
+
+module Mastodon
+  class CacheCLI < Thor
+    def self.exit_on_failure?
+      true
+    end
+
+    desc 'clear', 'Clear out the cache storage'
+    def clear
+      Rails.cache.clear
+      say('OK', :green)
+    end
+  end
+end