- Fix lint errors.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2019-02-01 21:26:04 +02:00
parent c2118f4830
commit de9965213a
5 changed files with 15 additions and 20 deletions

View file

@ -408,7 +408,7 @@ Migrations.add('add-displayAuthenticationMethod', () => {
$set: {
displayAuthenticationMethod: true,
},
}, noValidateMulti)
}, noValidateMulti);
});
Migrations.add('add-defaultAuthenticationMethod', () => {
@ -420,5 +420,5 @@ Migrations.add('add-defaultAuthenticationMethod', () => {
$set: {
defaultAuthenticationMethod: 'password',
},
}, noValidateMulti)
});
}, noValidateMulti);
});

View file

@ -7,8 +7,8 @@ Meteor.publish('setting', () => {
customHTMLafterBodyStart: 1,
customHTMLbeforeBodyEnd: 1,
displayAuthenticationMethod: 1,
defaultAuthenticationMethod: 1
}
defaultAuthenticationMethod: 1,
},
});
});