mirror of
https://github.com/wekan/wekan.git
synced 2025-12-22 10:20:14 +01:00
Fix lint errors.
This commit is contained in:
parent
a0d2df0647
commit
1b32509496
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
Template.invitationCode.onRendered(function() {
|
Template.invitationCode.onRendered(function() {
|
||||||
Meteor.subscribe('setting', {
|
Meteor.subscribe('setting', {
|
||||||
onReady : function() {
|
onReady() {
|
||||||
const setting = Settings.findOne();
|
const setting = Settings.findOne();
|
||||||
|
|
||||||
if (!setting || !setting.disableRegistration) {
|
if (!setting || !setting.disableRegistration) {
|
||||||
|
|
@ -8,6 +8,6 @@ Template.invitationCode.onRendered(function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.stop();
|
return this.stop();
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue