2019-06-17 06:14:48 +00:00
|
|
|
module.exports = Self => {
|
|
|
|
Self.validatesPresenceOf('name', {
|
2019-11-28 11:54:34 +00:00
|
|
|
message: `Name cannot be blank`
|
|
|
|
});
|
|
|
|
Self.validatesPresenceOf('bic', {
|
|
|
|
message: `Swift / BIC can't be empty`
|
2019-06-17 06:14:48 +00:00
|
|
|
});
|
|
|
|
};
|