1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-13 06:03:49 -05:00

16 lines
274 B
Ruby
Raw Normal View History

2023-06-14 04:38:07 +02:00
# 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