mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
7 lines
143 B
JavaScript
7 lines
143 B
JavaScript
|
|
Template.invitationCode.onRendered(() => {
|
||
|
|
const strict = Settings.findOne().strict;
|
||
|
|
if(!strict){
|
||
|
|
$('#invitationcode').hide();
|
||
|
|
}
|
||
|
|
});
|