Add ability to block sign-ups from IP using the CLI (#24870)

local
Daniel M Brasil 1 year ago committed by GitHub
parent ffb3fef7db
commit 536dd046d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/mastodon/ip_blocks_cli.rb

@ -11,7 +11,7 @@ module Mastodon
true
end
option :severity, required: true, enum: %w(no_access sign_up_requires_approval), desc: 'Severity of the block'
option :severity, required: true, enum: %w(no_access sign_up_requires_approval sign_up_block), desc: 'Severity of the block'
option :comment, aliases: [:c], desc: 'Optional comment'
option :duration, aliases: [:d], type: :numeric, desc: 'Duration of the block in seconds'
option :force, type: :boolean, aliases: [:f], desc: 'Overwrite existing blocks'

Loading…
Cancel
Save