Add tootctl cache clear (#10689)
				
					
				
			This commit is contained in:
		
							parent
							
								
									52eca0c4b5
								
							
						
					
					
						commit
						a33bd6ad98
					
				
					 2 changed files with 23 additions and 0 deletions
				
			
		|  | @ -9,6 +9,7 @@ require_relative 'mastodon/search_cli' | ||||||
| require_relative 'mastodon/settings_cli' | require_relative 'mastodon/settings_cli' | ||||||
| require_relative 'mastodon/statuses_cli' | require_relative 'mastodon/statuses_cli' | ||||||
| require_relative 'mastodon/domains_cli' | require_relative 'mastodon/domains_cli' | ||||||
|  | require_relative 'mastodon/cache_cli' | ||||||
| require_relative 'mastodon/version' | require_relative 'mastodon/version' | ||||||
| 
 | 
 | ||||||
| module Mastodon | module Mastodon | ||||||
|  | @ -41,6 +42,9 @@ module Mastodon | ||||||
|     desc 'domains SUBCOMMAND ...ARGS', 'Manage account domains' |     desc 'domains SUBCOMMAND ...ARGS', 'Manage account domains' | ||||||
|     subcommand 'domains', Mastodon::DomainsCLI |     subcommand 'domains', Mastodon::DomainsCLI | ||||||
| 
 | 
 | ||||||
|  |     desc 'cache SUBCOMMAND ...ARGS', 'Manage cache' | ||||||
|  |     subcommand 'cache', Mastodon::CacheCLI | ||||||
|  | 
 | ||||||
|     option :dry_run, type: :boolean |     option :dry_run, type: :boolean | ||||||
|     desc 'self-destruct', 'Erase the server from the federation' |     desc 'self-destruct', 'Erase the server from the federation' | ||||||
|     long_desc <<~LONG_DESC |     long_desc <<~LONG_DESC | ||||||
|  |  | ||||||
							
								
								
									
										19
									
								
								lib/mastodon/cache_cli.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								lib/mastodon/cache_cli.rb
									
									
									
									
									
										Normal file
									
								
							|  | @ -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 | ||||||
		Loading…
	
		Reference in a new issue