GetTagInfoReq get tag info request
| 41 | |
| 42 | // GetTagInfoReq get tag info request |
| 43 | type GetTagInfoReq struct { |
| 44 | // tag id |
| 45 | ID string `validate:"omitempty" form:"id"` |
| 46 | // tag slug name |
| 47 | Name string `validate:"omitempty,gt=0,lte=35" form:"name"` |
| 48 | UserID string `json:"-"` |
| 49 | CanEdit bool `json:"-"` |
| 50 | CanDelete bool `json:"-"` |
| 51 | CanMerge bool `json:"-"` |
| 52 | CanRecover bool `json:"-"` |
| 53 | } |
| 54 | |
| 55 | type GetTamplateTagInfoReq struct { |
| 56 | // tag id |
nothing calls this directly
no outgoing calls
no test coverage detected