mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
parent
4bcddcc98a
commit
3076547cee
3 changed files with 30 additions and 22 deletions
|
|
@ -53,6 +53,18 @@ Template.userFormsLayout.onCreated(function() {
|
|||
$('.at-pwd-form').hide();
|
||||
}
|
||||
});
|
||||
|
||||
Meteor.call('isDisableRegistration', (_, result) => {
|
||||
if (result) {
|
||||
$('.at-signUp').hide();
|
||||
}
|
||||
});
|
||||
|
||||
Meteor.call('isDisableForgotPassword', (_, data) => {
|
||||
if (result) {
|
||||
$('.at-forgotPwd').hide();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Template.userFormsLayout.onRendered(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue