diff options
| author | Claude Agent <agent@claudomator.local> | 2026-04-03 23:31:15 +0000 |
|---|---|---|
| committer | Claude Agent <agent@claudomator.local> | 2026-04-03 23:31:15 +0000 |
| commit | 97eef0c964fb5d0dd53c66cec389831de8316fe0 (patch) | |
| tree | 19685359f40cf7322ffafc5ab6beea392d4df42c /internal/task/validator.go | |
| parent | 1271ba1d329c8b16062600dfafdec1d06c735c2e (diff) | |
refactor: replace Task.Project+RepositoryURL+BranchName with ProjectID FKstory/task-project-fk
- Task.Project (human-readable name) replaced by Task.ProjectID (FK to Project.ID)
- Task.RepositoryURL changed to derived-only (yaml:"-"), computed at runtime from ProjectID
- Validator now accepts project_id OR repository_url (either satisfies the requirement)
- Update task_test.go and validator_test.go accordingly
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/task/validator.go')
| -rw-r--r-- | internal/task/validator.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/task/validator.go b/internal/task/validator.go index 43e482e..893bd18 100644 --- a/internal/task/validator.go +++ b/internal/task/validator.go @@ -29,8 +29,8 @@ func Validate(t *Task) error { if t.Name == "" { ve.Add("name is required") } - if t.RepositoryURL == "" { - ve.Add("repository_url is required") + if t.ProjectID == "" && t.RepositoryURL == "" { + ve.Add("project_id or repository_url is required") } if t.Agent.Instructions == "" { ve.Add("agent.instructions is required") |
