Change user.confirmation_pending field to user.is_confirmed

This commit is contained in:
Mark Felder 2020-10-13 14:29:34 -05:00 committed by Mark Felder
commit d36182c088
29 changed files with 121 additions and 101 deletions

View file

@ -1013,7 +1013,7 @@ defmodule Pleroma.Web.OAuth.OAuthControllerTest do
user =
insert(:user,
password_hash: Pleroma.Password.Pbkdf2.hash_pwd_salt(password),
confirmation_pending: true
is_confirmed: false
)
app = insert(:oauth_app, scopes: ["read", "write"])