mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Merge pull request #3 from dwrensha/fullname-bugfix
fix minor bug in Sandstorm username handling
This commit is contained in:
commit
00216f18ac
2 changed files with 3 additions and 3 deletions
|
|
@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
|
||||||
appTitle = (defaultText = "Wekan"),
|
appTitle = (defaultText = "Wekan"),
|
||||||
# The name of the app as it is displayed to the user.
|
# The name of the app as it is displayed to the user.
|
||||||
|
|
||||||
appVersion = 13,
|
appVersion = 14,
|
||||||
# Increment this for every release.
|
# Increment this for every release.
|
||||||
|
|
||||||
appMarketingVersion = (defaultText = "0.11.0~2016-11-07"),
|
appMarketingVersion = (defaultText = "0.11.0~2016-11-08"),
|
||||||
# Human-readable presentation of the app version.
|
# Human-readable presentation of the app version.
|
||||||
|
|
||||||
minUpgradableAppVersion = 0,
|
minUpgradableAppVersion = 0,
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,7 @@ if (isSandstorm && Meteor.isServer) {
|
||||||
|
|
||||||
const login = Accounts.updateOrCreateUserFromExternalService(
|
const login = Accounts.updateOrCreateUserFromExternalService(
|
||||||
'sandstorm', sandstormInfo,
|
'sandstorm', sandstormInfo,
|
||||||
{ profile: { name: sandstormInfo.name, fullname: sandstormInfo.name } });
|
{ profile: { name: sandstormInfo.name } });
|
||||||
|
|
||||||
updateUserPermissions(login.userId, permissions);
|
updateUserPermissions(login.userId, permissions);
|
||||||
done();
|
done();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue