You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
394 B
15 lines
394 B
# frozen_string_literal: true
|
|
|
|
class Settings::ExportsController < ApplicationController
|
|
layout 'admin'
|
|
|
|
before_action :authenticate_user!
|
|
|
|
def show
|
|
@total_storage = current_account.media_attachments.sum(:file_file_size)
|
|
@total_follows = current_account.following.count
|
|
@total_blocks = current_account.blocking.count
|
|
@total_mutes = current_account.muting.count
|
|
end
|
|
end
|