|
@@ -95,7 +95,7 @@ Users.attachSchema(
|
|
autoValue() {
|
|
autoValue() {
|
|
if (this.isInsert && !this.isSet) {
|
|
if (this.isInsert && !this.isSet) {
|
|
return {
|
|
return {
|
|
- boardView: 'board-view-lists',
|
|
|
|
|
|
+ boardView: 'board-view-swimlanes',
|
|
};
|
|
};
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -218,8 +218,8 @@ Users.attachSchema(
|
|
type: String,
|
|
type: String,
|
|
optional: true,
|
|
optional: true,
|
|
allowedValues: [
|
|
allowedValues: [
|
|
- 'board-view-lists',
|
|
|
|
'board-view-swimlanes',
|
|
'board-view-swimlanes',
|
|
|
|
+ 'board-view-lists',
|
|
'board-view-cal',
|
|
'board-view-cal',
|
|
],
|
|
],
|
|
},
|
|
},
|
|
@@ -903,7 +903,7 @@ if (Meteor.isServer) {
|
|
user.profile = {
|
|
user.profile = {
|
|
initials,
|
|
initials,
|
|
fullname: user.services.oidc.fullname,
|
|
fullname: user.services.oidc.fullname,
|
|
- boardView: 'board-view-lists',
|
|
|
|
|
|
+ boardView: 'board-view-swimlanes',
|
|
};
|
|
};
|
|
user.authenticationMethod = 'oauth2';
|
|
user.authenticationMethod = 'oauth2';
|
|
|
|
|
|
@@ -961,7 +961,7 @@ if (Meteor.isServer) {
|
|
);
|
|
);
|
|
} else {
|
|
} else {
|
|
user.profile = { icode: options.profile.invitationcode };
|
|
user.profile = { icode: options.profile.invitationcode };
|
|
- user.profile.boardView = 'board-view-lists';
|
|
|
|
|
|
+ user.profile.boardView = 'board-view-swimlanes';
|
|
|
|
|
|
// Deletes the invitation code after the user was created successfully.
|
|
// Deletes the invitation code after the user was created successfully.
|
|
setTimeout(
|
|
setTimeout(
|