Fix lint errors.

This commit is contained in:
Lauri Ojansivu 2018-07-16 14:46:33 +03:00
parent a0d2df0647
commit 1b32509496

View file

@ -1,6 +1,6 @@
Template.invitationCode.onRendered(function() {
Meteor.subscribe('setting', {
onReady : function() {
onReady() {
const setting = Settings.findOne();
if (!setting || !setting.disableRegistration) {
@ -8,6 +8,6 @@ Template.invitationCode.onRendered(function() {
}
return this.stop();
}
},
});
});