mirror of
https://github.com/wekan/wekan.git
synced 2025-04-24 14:08:31 -04:00
13 lines
282 B
JavaScript
13 lines
282 B
JavaScript
Template.invitationCode.onRendered(function() {
|
|
Meteor.subscribe('setting', {
|
|
onReady() {
|
|
const setting = Settings.findOne();
|
|
|
|
if (!setting || !setting.disableRegistration) {
|
|
$('#invitationcode').hide();
|
|
}
|
|
|
|
return this.stop();
|
|
},
|
|
});
|
|
});
|