glitch-soc/mastodon

View on GitHub
app/controllers/settings/verifications_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Settings::VerificationsController < Settings::BaseController
  before_action :set_account

  def show
    @verified_links = @account.fields.select(&:verified?)
  end

  private

  def set_account
    @account = current_account
  end
end