1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-12 13:37:20 +00:00

api: implement logic for all project/user related endpoints

This commit is contained in:
eyad-hussein
2024-07-10 16:12:59 +03:00
parent 5877fabc84
commit f8ae9f730b
5 changed files with 444 additions and 118 deletions

View File

@ -8,8 +8,8 @@ type Project struct {
ID int64 `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
TemplateType string `json:"template_type"`
CardType string `json:"card_type"`
TemplateType uint8 `json:"template_type"`
CardType uint8 `json:"card_type"`
}
type CreateProjectOption struct {