mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 17:31:12 +01:00
f48cb3eb17
* Add coverage for admin/confirmations controller * Coverage for statuses controller show action * Add coverage for admin/domain_blocks controller * Add coverage for settings/profiles#update
16 lines
318 B
Ruby
16 lines
318 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class ConfirmationsController < BaseController
|
|
def create
|
|
account_user.confirm
|
|
redirect_to admin_accounts_path
|
|
end
|
|
|
|
private
|
|
|
|
def account_user
|
|
Account.find(params[:account_id]).user || raise(ActiveRecord::RecordNotFound)
|
|
end
|
|
end
|
|
end
|