mirror of
https://github.com/wekan/wekan.git
synced 2026-02-10 10:14:21 +01:00
Merge remote-tracking branch 'remotes/origin/master' into feature-meteor-files
This commit is contained in:
commit
b378bb55ac
96 changed files with 559 additions and 25 deletions
|
|
@ -53,6 +53,19 @@ Template.userFormsLayout.onCreated(function() {
|
|||
$('.at-pwd-form').hide();
|
||||
}
|
||||
});
|
||||
|
||||
Meteor.call('isDisableRegistration', (_, result) => {
|
||||
if (result) {
|
||||
$('.at-signup-link').hide();
|
||||
}
|
||||
});
|
||||
|
||||
Meteor.call('isDisableForgotPassword', (_, result) => {
|
||||
if (result) {
|
||||
$('.at-pwd-link').hide();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
Template.userFormsLayout.onRendered(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue