Browse Source

clean tail

tags/v0.9.99
skyblue 10 years ago
parent
commit
24d0ca4aa0
2 changed files with 5 additions and 6 deletions
  1. 2
    6
      models/oauth2.go
  2. 3
    0
      routers/user/social.go

+ 2
- 6
models/oauth2.go View File

package models package models


import (
"errors"
"fmt"
)
import "errors"


// OT: Oauth2 Type // OT: Oauth2 Type
const ( const (
return return
} }
if !exists { if !exists {
err = fmt.Errorf("not exists oauth2: %s", identity)
return
return nil, ErrOauth2RecordNotExists
} }
if oa.Uid == 0 { if oa.Uid == 0 {
return oa, ErrOauth2NotAssociatedWithUser return oa, ErrOauth2NotAssociatedWithUser

+ 3
- 0
routers/user/social.go View File

} }
case models.ErrOauth2NotAssociatedWithUser: case models.ErrOauth2NotAssociatedWithUser:
// pass // pass
default:
log.Error(err) // FIXME: handle error page
return
} }
ctx.Session.Set("socialId", oa.Id) ctx.Session.Set("socialId", oa.Id)
log.Info("socialId: %v", oa.Id) log.Info("socialId: %v", oa.Id)

Loading…
Cancel
Save