mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 16:33:24 +00:00
3ddd936b03
* Add basic coverage for settings/exports controller * Remove unused @account variable from settings/exports controller * Add coverage for download export actions * Remove deprecated `render :text` in favor of `send_data` for csv downloads * Add model to handle exports * Use Export class in settings/exports controller * Simplify settings/exports controller methods * Move settings/export to more restful routes
14 lines
346 B
Ruby
14 lines
346 B
Ruby
# 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
|
|
end
|
|
end
|