[#1304] Moved all non-mutes / non-blocks fields from User.Info to User. WIP.
authorIvan Tashkinov <ivantashkinov@gmail.com>
Wed, 16 Oct 2019 18:59:21 +0000 (21:59 +0300)
committerIvan Tashkinov <ivantashkinov@gmail.com>
Wed, 16 Oct 2019 18:59:21 +0000 (21:59 +0300)
commit10ff01acd95d42314b4eb923e5b7a7191356b73e
treedc56d5f466ddae5d4b85e4584f21aa9270c7ebfc
parente3b4a3e96b2ffbc6d920155cd41687414045d4d6
[#1304] Moved all non-mutes / non-blocks fields from User.Info to User. WIP.
88 files changed:
CHANGELOG.md
lib/mix/tasks/pleroma/user.ex
lib/pleroma/daemons/digest_email_daemon.ex
lib/pleroma/emails/user_email.ex
lib/pleroma/formatter.ex
lib/pleroma/notification.ex
lib/pleroma/plugs/admin_secret_authentication_plug.ex
lib/pleroma/plugs/oauth_plug.ex
lib/pleroma/plugs/user_enabled_plug.ex
lib/pleroma/plugs/user_is_admin_plug.ex
lib/pleroma/stats.ex
lib/pleroma/user.ex
lib/pleroma/user/info.ex
lib/pleroma/user/query.ex
lib/pleroma/web/activity_pub/activity_pub.ex
lib/pleroma/web/activity_pub/activity_pub_controller.ex
lib/pleroma/web/activity_pub/mrf/anti_link_spam_policy.ex
lib/pleroma/web/activity_pub/publisher.ex
lib/pleroma/web/activity_pub/transmogrifier.ex
lib/pleroma/web/activity_pub/views/user_view.ex
lib/pleroma/web/admin_api/admin_api_controller.ex
lib/pleroma/web/admin_api/views/account_view.ex
lib/pleroma/web/common_api/common_api.ex
lib/pleroma/web/masto_fe_controller.ex
lib/pleroma/web/mastodon_api/controllers/account_controller.ex
lib/pleroma/web/mastodon_api/views/account_view.ex
lib/pleroma/web/mastodon_api/views/status_view.ex
lib/pleroma/web/oauth/oauth_controller.ex
lib/pleroma/web/ostatus/handlers/follow_handler.ex
lib/pleroma/web/ostatus/ostatus.ex
lib/pleroma/web/pleroma_api/controllers/account_controller.ex
lib/pleroma/web/pleroma_api/controllers/mascot_controller.ex
lib/pleroma/web/salmon/salmon.ex
lib/pleroma/web/streamer/worker.ex
lib/pleroma/web/twitter_api/twitter_api_controller.ex
lib/pleroma/web/views/masto_fe_view.ex
lib/pleroma/web/websub/websub.ex
priv/repo/migrations/20190710125158_add_following_address_from_source_data.exs
priv/repo/migrations/20190711042024_copy_muted_to_muted_notifications.exs
priv/repo/migrations/20191009154608_copy_users_info_fields_to_users.exs [new file with mode: 0644]
test/daemons/digest_email_daemon_test.exs
test/emails/user_email_test.exs
test/formatter_test.exs
test/moderation_log_test.exs
test/notification_test.exs
test/plugs/admin_secret_authentication_plug_test.exs
test/plugs/user_enabled_plug_test.exs
test/plugs/user_is_admin_plug_test.exs
test/signature_test.exs
test/tasks/count_statuses_test.exs
test/tasks/database_test.exs
test/tasks/user_test.exs
test/user_info_test.exs [deleted file]
test/user_test.exs
test/web/activity_pub/activity_pub_controller_test.exs
test/web/activity_pub/activity_pub_test.exs
test/web/activity_pub/mrf/anti_link_spam_policy_test.exs
test/web/activity_pub/publisher_test.exs
test/web/activity_pub/transmogrifier/follow_handling_test.exs
test/web/activity_pub/transmogrifier_test.exs
test/web/activity_pub/utils_test.exs
test/web/activity_pub/views/user_view_test.exs
test/web/admin_api/admin_api_controller_test.exs
test/web/admin_api/search_test.exs
test/web/admin_api/views/report_view_test.exs
test/web/common_api/common_api_test.exs
test/web/federator_test.exs
test/web/masto_fe_controller_test.exs
test/web/mastodon_api/controllers/account_controller/update_credentials_test.exs
test/web/mastodon_api/controllers/account_controller_test.exs
test/web/mastodon_api/controllers/conversation_controller_test.exs
test/web/mastodon_api/controllers/follow_request_controller_test.exs
test/web/mastodon_api/controllers/instance_controller_test.exs
test/web/mastodon_api/controllers/status_controller_test.exs
test/web/mastodon_api/mastodon_api_test.exs
test/web/mastodon_api/views/account_view_test.exs
test/web/node_info_test.exs
test/web/oauth/oauth_controller_test.exs
test/web/ostatus/ostatus_controller_test.exs
test/web/ostatus/ostatus_test.exs
test/web/pleroma_api/controllers/account_controller_test.exs
test/web/pleroma_api/controllers/emoji_api_controller_test.exs
test/web/salmon/salmon_test.exs
test/web/streamer/streamer_test.exs
test/web/twitter_api/password_controller_test.exs
test/web/twitter_api/twitter_api_test.exs
test/web/twitter_api/util_controller_test.exs
test/web/websub/websub_test.exs