Change user.deactivated field to user.is_active
authorMark Felder <feld@FreeBSD.org>
Mon, 12 Oct 2020 22:42:27 +0000 (17:42 -0500)
committerMark Felder <feld@feld.me>
Fri, 15 Jan 2021 17:24:46 +0000 (11:24 -0600)
commit860b5c78048ede3597a02b6029634d74fd520204
treea9268819d41ae978c17d4bdfbb80c936301b094d
parentcf367fdbd53b50f4324a01ddabdc0520cd787321
Change user.deactivated field to user.is_active
40 files changed:
lib/mix/tasks/pleroma/email.ex
lib/mix/tasks/pleroma/user.ex
lib/pleroma/following_relationship.ex
lib/pleroma/notification.ex
lib/pleroma/stats.ex
lib/pleroma/user.ex
lib/pleroma/user/query.ex
lib/pleroma/web/activity_pub/activity_pub.ex
lib/pleroma/web/activity_pub/object_validators/common_validations.ex
lib/pleroma/web/admin_api/controllers/user_controller.ex
lib/pleroma/web/admin_api/views/account_view.ex
lib/pleroma/web/api_spec/operations/admin/report_operation.ex
lib/pleroma/web/api_spec/operations/admin/status_operation.ex
lib/pleroma/web/mastodon_api/views/account_view.ex
lib/pleroma/web/mongoose_im/mongoose_im_controller.ex
lib/pleroma/web/pleroma_api/views/emoji_reaction_view.ex
lib/pleroma/web/twitter_api/twitter_api.ex
priv/repo/migrations/20201012173004_refactor_deactivated_user_field.exs [new file with mode: 0644]
test/mix/tasks/pleroma/email_test.exs
test/mix/tasks/pleroma/user_test.exs
test/pleroma/user_test.exs
test/pleroma/web/activity_pub/side_effects/delete_test.exs
test/pleroma/web/activity_pub/side_effects_test.exs
test/pleroma/web/activity_pub/transmogrifier/chat_message_test.exs
test/pleroma/web/activity_pub/transmogrifier/delete_handling_test.exs
test/pleroma/web/activity_pub/transmogrifier/note_handling_test.exs
test/pleroma/web/admin_api/controllers/status_controller_test.exs
test/pleroma/web/admin_api/controllers/user_controller_test.exs
test/pleroma/web/admin_api/search_test.exs
test/pleroma/web/common_api_test.exs
test/pleroma/web/mastodon_api/controllers/account_controller_test.exs
test/pleroma/web/mastodon_api/controllers/auth_controller_test.exs
test/pleroma/web/mastodon_api/controllers/instance_controller_test.exs
test/pleroma/web/mastodon_api/mastodon_api_test.exs
test/pleroma/web/mastodon_api/views/account_view_test.exs
test/pleroma/web/mongoose_im_controller_test.exs
test/pleroma/web/o_auth/o_auth_controller_test.exs
test/pleroma/web/plugs/user_enabled_plug_test.exs
test/pleroma/web/twitter_api/remote_follow_controller_test.exs
test/pleroma/web/twitter_api/util_controller_test.exs