(val)
| 666 | password: { |
| 667 | type: Sequelize.VIRTUAL, |
| 668 | set(val) { |
| 669 | this.setDataValue(class="st">'password', val); |
| 670 | this.setDataValue(class="st">'password_hash', this.salt + val); |
| 671 | }, |
| 672 | validate: { |
| 673 | isLongEnough(val) { |
| 674 | if (val.length < 7) { |
nothing calls this directly
no test coverage detected