231801_test_to_master #1519

Merged
alexm merged 490 commits from 231801_test_to_master into master 2023-05-12 06:29:59 +00:00
1 changed files with 3 additions and 4 deletions
Showing only changes of commit 4edb2463b8 - Show all commits

View File

@ -1,8 +1,7 @@
module.exports = function(Self) {
Self.validatesPresenceOf('text', isEnabled, {message: 'Description cannot be blank'});
function isEnabled(err) {
if (!this.text) err();
}
Self.validatesPresenceOf('text', {
message: 'Description cannot be blank'
});
Self.observe('before save', async function(ctx) {
ctx.instance.created = new Date();