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.

13 lines
346 B

  1. # frozen_string_literal: true
  2. class Settings::ExportsController < ApplicationController
  3. layout 'admin'
  4. before_action :authenticate_user!
  5. def show
  6. @total_storage = current_account.media_attachments.sum(:file_file_size)
  7. @total_follows = current_account.following.count
  8. @total_blocks = current_account.blocking.count
  9. end
  10. end