gabctl accounts delete|suspend separated
`gabctl accounts suspend` does not remove user (can be undone). `gabctl accounts delete` does remove user (cannot be undone).
This commit is contained in:
parent
040f7c5106
commit
90ad01d133
|
@ -170,7 +170,7 @@ module GabSocial
|
||||||
|
|
||||||
desc 'delete USERNAME', 'Delete a user'
|
desc 'delete USERNAME', 'Delete a user'
|
||||||
long_desc <<-LONG_DESC
|
long_desc <<-LONG_DESC
|
||||||
Remove a user account with a given USERNAME.
|
Suspend the account matching USERNAME and remove the associated user (can't be undone).
|
||||||
LONG_DESC
|
LONG_DESC
|
||||||
def delete(username)
|
def delete(username)
|
||||||
account = Account.find_local(username)
|
account = Account.find_local(username)
|
||||||
|
@ -180,7 +180,7 @@ module GabSocial
|
||||||
exit(1)
|
exit(1)
|
||||||
end
|
end
|
||||||
|
|
||||||
say("Deleting user with #{account.statuses_count} statuses, this might take a while...")
|
say("Suspending account, removing #{account.statuses_count} statuses and user...")
|
||||||
SuspendAccountService.new.call(account, including_user: true)
|
SuspendAccountService.new.call(account, including_user: true)
|
||||||
say('OK', :green)
|
say('OK', :green)
|
||||||
end
|
end
|
||||||
|
@ -439,6 +439,23 @@ module GabSocial
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc 'suspend USERNAME', 'Suspend a user'
|
||||||
|
long_desc <<-LONG_DESC
|
||||||
|
Suspend the user account with the given USERNAME (can be undone).
|
||||||
|
LONG_DESC
|
||||||
|
def suspend(username)
|
||||||
|
account = Account.find_local(username)
|
||||||
|
|
||||||
|
if account.nil?
|
||||||
|
say('No user with such username', :red)
|
||||||
|
exit(1)
|
||||||
|
end
|
||||||
|
|
||||||
|
say("Suspending user and removing #{account.statuses_count} statuses...")
|
||||||
|
SuspendAccountService.new.call(account, including_user: false)
|
||||||
|
say('OK', :green)
|
||||||
|
end
|
||||||
|
|
||||||
option :number, type: :numeric, aliases: [:n]
|
option :number, type: :numeric, aliases: [:n]
|
||||||
option :all, type: :boolean
|
option :all, type: :boolean
|
||||||
desc 'approve [USERNAME]', 'Approve pending accounts'
|
desc 'approve [USERNAME]', 'Approve pending accounts'
|
||||||
|
|
Loading…
Reference in New Issue