()
| 226 | } |
| 227 | |
| 228 | currentPasswordRequired () { |
| 229 | // Return true if current password should be given for password change |
| 230 | const spying = window.serverSession?.amActually |
| 231 | return !spying && !this.get('newPasswordRequired') && !this.hasNoPasswordLoginMethod() |
| 232 | } |
| 233 | |
| 234 | static getUnconflictedName (name, done) { |
| 235 | // deprecate in favor of @checkNameConflicts, which uses Promises and returns the whole response |
nothing calls this directly
no test coverage detected