mastodon/app/controllers/settings/exports_controller.rb

15 lines
394 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Settings::ExportsController < ApplicationController
layout 'admin'
before_action :authenticate_user!
2017-03-19 20:29:41 +01:00
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
2017-03-19 20:29:41 +01:00
end
end