Corrected spelling of SignedInUser (was SignInUser)

This commit is contained in:
Torkel Ödegaard
2015-01-16 16:17:35 +01:00
parent 2b05dac071
commit ed879df1f4
3 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ func GetSignedInUser(query *m.GetSignedInUserQuery) error {
LEFT OUTER JOIN collaborator on collaborator.account_id = usingAccount.id AND collaborator.collaborator_id = userAccount.id
WHERE userAccount.id=?`
var user m.SignInUser
var user m.SignedInUser
sess := x.Table("account")
has, err := sess.Sql(rawSql, query.AccountId).Get(&user)
if err != nil {