mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
13 lines
289 B
JavaScript
13 lines
289 B
JavaScript
Template.invitationCode.onRendered(function() {
|
|
Meteor.subscribe('setting', {
|
|
onReady() {
|
|
const setting = Utils.getCurrentSetting();
|
|
|
|
if (!setting || !setting.disableRegistration) {
|
|
$('#invitationcode').hide();
|
|
}
|
|
|
|
return this.stop();
|
|
},
|
|
});
|
|
});
|