This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-02-26 15:15:00 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::ExportsController < ApplicationController
|
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2017-03-19 12:29:41 -07: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
|
2017-04-12 09:20:44 -07:00
|
|
|
@total_mutes = current_account.muting.count
|
2017-03-19 12:29:41 -07:00
|
|
|
end
|
2017-02-26 15:15:00 -08:00
|
|
|
end
|