1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-08-25 21:44:20 -04:00

Auth problem related #80

This commit is contained in:
Unknown 2014-04-16 04:37:07 -04:00
parent 7ad05ce210
commit 6277f8497c

View File

@ -1,3 +1,7 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package repo
import (
@ -54,7 +58,7 @@ func Http(ctx *middleware.Context, params martini.Params) {
}
// only public pull don't need auth
var askAuth = !(!repo.IsPrivate && isPull)
var askAuth = !(!repo.IsPrivate && isPull) || base.Service.RequireSignInView
var authUser *models.User