Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶ added in v0.12.0
type Account struct {
domainlayer.DomainEntity
Email string `gorm:"type:varchar(255)"`
FullName string `gorm:"type:varchar(255)"`
UserName string `gorm:"type:varchar(255)"`
AvatarUrl string `gorm:"type:varchar(255)"`
Organization string `gorm:"type:varchar(255)"`
CreatedDate *time.Time
Status int
}
type BoardRepo ¶
type IssueCommit ¶
type IssueCommit struct {
common.NoPKModel
IssueId string `gorm:"primaryKey;type:varchar(255)"`
CommitSha string `gorm:"primaryKey;type:varchar(255)"`
}
func (IssueCommit) TableName ¶ added in v0.12.0
func (IssueCommit) TableName() string
type IssueRepoCommit ¶
type IssueRepoCommit struct {
common.NoPKModel
IssueId string `gorm:"primaryKey;type:varchar(255)"`
RepoUrl string `gorm:"primaryKey;type:varchar(255)"`
CommitSha string `gorm:"primaryKey;type:varchar(255)"`
}
func (IssueRepoCommit) TableName ¶ added in v0.12.0
func (IssueRepoCommit) TableName() string
type PullRequestIssue ¶
type PullRequestIssue struct {
PullRequestId string `json:"id" gorm:"primaryKey;type:varchar(255);comment:This key is generated based on details from the original plugin"` // format: <Plugin>:<Entity>:<PK0>:<PK1>
IssueId string `gorm:"primaryKey;type:varchar(255)"`
PullRequestNumber int
IssueNumber int
common.NoPKModel
}
func (PullRequestIssue) TableName ¶ added in v0.12.0
func (PullRequestIssue) TableName() string
type RefsIssuesDiffs ¶
type RefsIssuesDiffs struct {
NewRefId string `gorm:"primaryKey;type:varchar(255)"`
OldRefId string `gorm:"primaryKey;type:varchar(255)"`
NewRefCommitSha string `gorm:"type:varchar(40)"`
OldRefCommitSha string `gorm:"type:varchar(40)"`
IssueNumber string `gorm:"type:varchar(255)"`
IssueId string `gorm:"primaryKey;type:varchar(255)"`
common.NoPKModel
}
func (RefsIssuesDiffs) TableName ¶ added in v0.12.0
func (RefsIssuesDiffs) TableName() string
type Team ¶ added in v0.12.0
type Team struct {
domainlayer.DomainEntity
Name string `gorm:"type:varchar(255)"`
Alias string `gorm:"type:varchar(255)"`
ParentId string `gorm:"type:varchar(255)"`
SortingIndex int
}
type TeamUser ¶ added in v0.12.0
type User ¶ added in v0.12.0
type User struct {
domainlayer.DomainEntity
Email string `gorm:"type:varchar(255)"`
Name string `gorm:"type:varchar(255)"`
}
type UserAccount ¶ added in v0.12.0
type UserAccount struct {
UserId string `gorm:"primaryKey;type:varchar(255)"`
AccountId string `gorm:"primaryKey;type:varchar(255)"`
}
func (UserAccount) TableName ¶ added in v0.12.0
func (UserAccount) TableName() string
Click to show internal directories.
Click to hide internal directories.