mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
836f9d86aa
* Add User.IsRestricted & UI to edit it * Pass user object instead of user id to places where IsRestricted flag matters * Restricted users: maintain access rows for all referenced repos (incl public) * Take logged in user & IsRestricted flag into account in org/repo listings, searches and accesses * Add basic repo access tests for restricted users Signed-off-by: Manush Dodunekov <manush@stendahls.se>
18 lines
427 B
Go
18 lines
427 B
Go
// Copyright 2019 The Gitea 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 migrations
|
|
|
|
import "xorm.io/xorm"
|
|
|
|
func addIsRestricted(x *xorm.Engine) error {
|
|
// User see models/user.go
|
|
type User struct {
|
|
ID int64 `xorm:"pk autoincr"`
|
|
IsRestricted bool `xorm:"NOT NULL DEFAULT false"`
|
|
}
|
|
|
|
return x.Sync2(new(User))
|
|
}
|