mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Fix lint errors.
This commit is contained in:
parent
28a01862d0
commit
3a7ae7c5f2
5 changed files with 13 additions and 13 deletions
|
|
@ -7,7 +7,7 @@ const i18nTagToT9n = (i18nTag) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const validator = {
|
const validator = {
|
||||||
set: function(obj, prop, value) {
|
set(obj, prop, value) {
|
||||||
if (prop === 'state' && value !== 'signIn') {
|
if (prop === 'state' && value !== 'signIn') {
|
||||||
$('.at-form-authentication').hide();
|
$('.at-form-authentication').hide();
|
||||||
} else if (prop === 'state' && value === 'signIn') {
|
} else if (prop === 'state' && value === 'signIn') {
|
||||||
|
|
@ -17,7 +17,7 @@ const validator = {
|
||||||
obj[prop] = value;
|
obj[prop] = value;
|
||||||
// Indicate success
|
// Indicate success
|
||||||
return true;
|
return true;
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
Template.userFormsLayout.onRendered(() => {
|
Template.userFormsLayout.onRendered(() => {
|
||||||
|
|
@ -82,7 +82,7 @@ Template.userFormsLayout.events({
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
'click #at-btn'(event) {
|
'click #at-btn'(event) {
|
||||||
/* All authentication method can be managed/called here.
|
/* All authentication method can be managed/called here.
|
||||||
!! DON'T FORGET to correctly fill the fields of the user during its creation if necessary authenticationMethod : String !!
|
!! DON'T FORGET to correctly fill the fields of the user during its creation if necessary authenticationMethod : String !!
|
||||||
*/
|
*/
|
||||||
const authenticationMethodSelected = $('.select-authentication').val();
|
const authenticationMethodSelected = $('.select-authentication').val();
|
||||||
|
|
|
||||||
|
|
@ -31,4 +31,4 @@ Template.connectionMethod.helpers({
|
||||||
authentications() {
|
authentications() {
|
||||||
return Template.instance().authenticationMethods.get();
|
return Template.instance().authenticationMethods.get();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -67,12 +67,12 @@ Template.editUserPopup.onCreated(function() {
|
||||||
|
|
||||||
Meteor.call('getAuthenticationsEnabled', (_, result) => {
|
Meteor.call('getAuthenticationsEnabled', (_, result) => {
|
||||||
if (result) {
|
if (result) {
|
||||||
// TODO : add a management of different languages
|
// TODO : add a management of different languages
|
||||||
// (ex {value: ldap, text: TAPi18n.__('ldap', {}, T9n.getLanguage() || 'en')})
|
// (ex {value: ldap, text: TAPi18n.__('ldap', {}, T9n.getLanguage() || 'en')})
|
||||||
this.authenticationMethods.set([
|
this.authenticationMethods.set([
|
||||||
{value: 'password'},
|
{value: 'password'},
|
||||||
// Gets only the authentication methods availables
|
// Gets only the authentication methods availables
|
||||||
...Object.entries(result).filter(e => e[1]).map(e => ({value: e[0]})),
|
...Object.entries(result).filter((e) => e[1]).map((e) => ({value: e[0]})),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -94,7 +94,7 @@ Template.editUserPopup.helpers({
|
||||||
const userId = Template.instance().data.userId;
|
const userId = Template.instance().data.userId;
|
||||||
const selected = Users.findOne(userId).authenticationMethod;
|
const selected = Users.findOne(userId).authenticationMethod;
|
||||||
return selected === 'ldap';
|
return selected === 'ldap';
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
BlazeComponent.extendComponent({
|
BlazeComponent.extendComponent({
|
||||||
|
|
@ -131,7 +131,7 @@ Template.editUserPopup.events({
|
||||||
'profile.fullname': fullname,
|
'profile.fullname': fullname,
|
||||||
'isAdmin': isAdmin === 'true',
|
'isAdmin': isAdmin === 'true',
|
||||||
'loginDisabled': isActive === 'true',
|
'loginDisabled': isActive === 'true',
|
||||||
'authenticationMethod': authentication
|
'authenticationMethod': authentication,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -499,7 +499,7 @@ if (Meteor.isServer) {
|
||||||
user.emails = [{ address: email, verified: true }];
|
user.emails = [{ address: email, verified: true }];
|
||||||
const initials = user.services.oidc.fullname.match(/\b[a-zA-Z]/g).join('').toUpperCase();
|
const initials = user.services.oidc.fullname.match(/\b[a-zA-Z]/g).join('').toUpperCase();
|
||||||
user.profile = { initials, fullname: user.services.oidc.fullname };
|
user.profile = { initials, fullname: user.services.oidc.fullname };
|
||||||
user['authenticationMethod'] = 'oauth2';
|
user.authenticationMethod = 'oauth2';
|
||||||
|
|
||||||
// see if any existing user has this email address or username, otherwise create new
|
// see if any existing user has this email address or username, otherwise create new
|
||||||
const existingUser = Meteor.users.findOne({$or: [{'emails.address': email}, {'username':user.username}]});
|
const existingUser = Meteor.users.findOne({$or: [{'emails.address': email}, {'username':user.username}]});
|
||||||
|
|
@ -512,7 +512,7 @@ if (Meteor.isServer) {
|
||||||
existingUser.emails = user.emails;
|
existingUser.emails = user.emails;
|
||||||
existingUser.username = user.username;
|
existingUser.username = user.username;
|
||||||
existingUser.profile = user.profile;
|
existingUser.profile = user.profile;
|
||||||
existingUser['authenticationMethod'] = user['authenticationMethod'];
|
existingUser.authenticationMethod = user.authenticationMethod;
|
||||||
|
|
||||||
Meteor.users.remove({_id: existingUser._id}); // remove existing record
|
Meteor.users.remove({_id: existingUser._id}); // remove existing record
|
||||||
return existingUser;
|
return existingUser;
|
||||||
|
|
@ -527,7 +527,7 @@ if (Meteor.isServer) {
|
||||||
// If ldap, bypass the inviation code if the self registration isn't allowed.
|
// If ldap, bypass the inviation code if the self registration isn't allowed.
|
||||||
// TODO : pay attention if ldap field in the user model change to another content ex : ldap field to connection_type
|
// TODO : pay attention if ldap field in the user model change to another content ex : ldap field to connection_type
|
||||||
if (options.ldap || !disableRegistration) {
|
if (options.ldap || !disableRegistration) {
|
||||||
user['authenticationMethod'] = 'ldap';
|
user.authenticationMethod = 'ldap';
|
||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -647,7 +647,7 @@ if (Meteor.isServer) {
|
||||||
const disableRegistration = Settings.findOne().disableRegistration;
|
const disableRegistration = Settings.findOne().disableRegistration;
|
||||||
// If ldap, bypass the inviation code if the self registration isn't allowed.
|
// If ldap, bypass the inviation code if the self registration isn't allowed.
|
||||||
// TODO : pay attention if ldap field in the user model change to another content ex : ldap field to connection_type
|
// TODO : pay attention if ldap field in the user model change to another content ex : ldap field to connection_type
|
||||||
if (doc['authenticationMethod'] !== 'ldap' && disableRegistration) {
|
if (doc.authenticationMethod !== 'ldap' && disableRegistration) {
|
||||||
const invitationCode = InvitationCodes.findOne({code: doc.profile.icode, valid: true});
|
const invitationCode = InvitationCodes.findOne({code: doc.profile.icode, valid: true});
|
||||||
if (!invitationCode) {
|
if (!invitationCode) {
|
||||||
throw new Meteor.Error('error-invitation-code-not-exist');
|
throw new Meteor.Error('error-invitation-code-not-exist');
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ Meteor.publish('people', function(limit) {
|
||||||
'emails': 1,
|
'emails': 1,
|
||||||
'createdAt': 1,
|
'createdAt': 1,
|
||||||
'loginDisabled': 1,
|
'loginDisabled': 1,
|
||||||
'authenticationMethod': 1
|
'authenticationMethod': 1,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue