Home
last modified time | relevance | path

Searched defs:RepoUnit (Results 1 – 2 of 2) sorted by relevance

/dports/www/gitea/gitea-1.16.5/models/repo/
H A Drepo_unit.go35 type RepoUnit struct { //revive:disable-line:exported struct
36 ID int64
37 RepoID int64 `xorm:"INDEX(s)"`
38 Type unit.Type `xorm:"INDEX(s)"`
39 Config convert.Conversion `xorm:"TEXT"`
40 CreatedUnix timeutil.TimeStamp `xorm:"INDEX CREATED"`
190 func (r *RepoUnit) Unit() unit.Unit {
195 func (r *RepoUnit) CodeConfig() *UnitConfig {
205 func (r *RepoUnit) ReleasesConfig() *UnitConfig {
215 func (r *RepoUnit) IssuesConfig() *IssuesConfig {
[all …]
/dports/www/gitea/gitea-1.16.5/modules/doctor/
H A Dfix16961.go212 func fixBrokenRepoUnit16961(repoUnit *repo_model.RepoUnit, bs []byte) (fixed bool, err error) {