mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
15 lines
274 B
Ruby
15 lines
274 B
Ruby
# 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
|