diff options
Diffstat (limited to 'internal/executor/executor.go')
| -rw-r--r-- | internal/executor/executor.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/executor/executor.go b/internal/executor/executor.go index 3c41250..e2eb7ce 100644 --- a/internal/executor/executor.go +++ b/internal/executor/executor.go @@ -55,6 +55,9 @@ type Store interface { GetEpicByName(name string) (*story.Epic, error) GetStory(id string) (*story.Story, error) UpdateStory(st *story.Story) error + // CreateRoleConfig backs storeChannel.ProposeRoleConfig (Phase 8) — see + // internal/executor/channel.go and internal/storage/roleconfig.go. + CreateRoleConfig(roleName, configJSON, proposedBy string) (*storage.RoleConfigRow, error) } // LogPather is an optional interface runners can implement to provide the log |
