2017-12-04 07:17:29 +00:00
|
|
|
module.exports = function(Self) {
|
2018-05-04 09:46:03 +00:00
|
|
|
require('../methods/greuge/sumAmount')(Self);
|
2018-01-11 10:22:56 +00:00
|
|
|
|
|
|
|
Self.validatesLengthOf('description', {
|
|
|
|
max: 45,
|
2018-08-02 07:49:00 +00:00
|
|
|
message: 'Description should have maximum of 45 characters'
|
2018-01-11 10:22:56 +00:00
|
|
|
});
|
2017-12-04 07:17:29 +00:00
|
|
|
};
|