diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-10-25 16:48:01 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-10-25 16:48:01 +0700 |
commit | dbee53c2df797dae4bf72d99339af12c6c522ba9 (patch) | |
tree | 13fd1f2ce489c2ee273aa19de4ef2d6d3602e8b6 /lib | |
parent | 07a6f8b8a33a137101dd1ceebc4fb5f5748c055b (diff) | |
download | pleroma-dbee53c2df797dae4bf72d99339af12c6c522ba9.tar.gz |
Remove unused Pleroma.User.info_fields/0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/user.ex | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 7bef6e281..b99e236a4 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -224,54 +224,6 @@ defmodule Pleroma.User do |> Repo.aggregate(:count, :id) end - @info_fields [ - :banner, - :background, - :source_data, - :note_count, - :follower_count, - :following_count, - :locked, - :confirmation_pending, - :password_reset_pending, - :confirmation_token, - :default_scope, - :blocks, - :domain_blocks, - :mutes, - :muted_reblogs, - :muted_notifications, - :subscribers, - :deactivated, - :no_rich_text, - :ap_enabled, - :is_moderator, - :is_admin, - :show_role, - :settings, - :magic_key, - :uri, - :hide_followers_count, - :hide_follows_count, - :hide_followers, - :hide_follows, - :hide_favorites, - :unread_conversation_count, - :pinned_activities, - :email_notifications, - :mascot, - :emoji, - :pleroma_settings_store, - :fields, - :raw_fields, - :discoverable, - :invisible, - :skip_thread_containment, - :notification_settings - ] - - def info_fields, do: @info_fields - defp truncate_fields_param(params) do if Map.has_key?(params, :fields) do Map.put(params, :fields, Enum.map(params[:fields], &truncate_field/1)) |