code.gitea.io/gitea@v1.19.3/modules/migration/repo.go (about)

     1  // Copyright 2019 The Gitea Authors. All rights reserved.
     2  // Copyright 2018 Jonas Franz. All rights reserved.
     3  // SPDX-License-Identifier: MIT
     4  
     5  package migration
     6  
     7  // Repository defines a standard repository information
     8  type Repository struct {
     9  	Name          string
    10  	Owner         string
    11  	IsPrivate     bool `yaml:"is_private"`
    12  	IsMirror      bool `yaml:"is_mirror"`
    13  	Description   string
    14  	CloneURL      string `yaml:"clone_url"` // SECURITY: This must be checked to ensure that is safe to be used
    15  	OriginalURL   string `yaml:"original_url"`
    16  	DefaultBranch string
    17  }