diff options
| author | Mark Felder <feld@FreeBSD.org> | 2020-10-13 14:29:34 -0500 |
|---|---|---|
| committer | Mark Felder <feld@feld.me> | 2021-01-15 12:44:41 -0600 |
| commit | d36182c08892723b53e801a564531ee7a463052f (patch) | |
| tree | 003bbcd561429939be7d7bca92110005aee4e5f6 /lib/pleroma/web/api_spec/operations/admin | |
| parent | cf367fdbd53b50f4324a01ddabdc0520cd787321 (diff) | |
| download | pleroma-d36182c08892723b53e801a564531ee7a463052f.tar.gz pleroma-d36182c08892723b53e801a564531ee7a463052f.zip | |
Change user.confirmation_pending field to user.is_confirmed
Diffstat (limited to 'lib/pleroma/web/api_spec/operations/admin')
| -rw-r--r-- | lib/pleroma/web/api_spec/operations/admin/report_operation.ex | 2 | ||||
| -rw-r--r-- | lib/pleroma/web/api_spec/operations/admin/status_operation.ex | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/api_spec/operations/admin/report_operation.ex b/lib/pleroma/web/api_spec/operations/admin/report_operation.ex index 526698fc1..d60e84a66 100644 --- a/lib/pleroma/web/api_spec/operations/admin/report_operation.ex +++ b/lib/pleroma/web/api_spec/operations/admin/report_operation.ex @@ -191,7 +191,7 @@ defmodule Pleroma.Web.ApiSpec.Admin.ReportOperation do moderator: %Schema{type: :boolean} } }, - confirmation_pending: %Schema{type: :boolean} + is_confirmed: %Schema{type: :boolean} }) } end diff --git a/lib/pleroma/web/api_spec/operations/admin/status_operation.ex b/lib/pleroma/web/api_spec/operations/admin/status_operation.ex index a2319bacc..fed3da27a 100644 --- a/lib/pleroma/web/api_spec/operations/admin/status_operation.ex +++ b/lib/pleroma/web/api_spec/operations/admin/status_operation.ex @@ -142,7 +142,7 @@ defmodule Pleroma.Web.ApiSpec.Admin.StatusOperation do } }, tags: %Schema{type: :string}, - confirmation_pending: %Schema{type: :string} + is_confirmed: %Schema{type: :string} } } end |
