fix(edge/jobs): fix get edge job file content [EE-2702] (#6622)

This commit is contained in:
Marcelo Rydel
2022-03-28 12:02:09 -03:00
committed by GitHub
parent b846c8e6d2
commit 8860d72f70
7 changed files with 16 additions and 14 deletions

View File

@@ -74,7 +74,7 @@ type (
EdgeJobService interface {
EdgeJobs() ([]portainer.EdgeJob, error)
EdgeJob(ID portainer.EdgeJobID) (*portainer.EdgeJob, error)
Create(edgeJob *portainer.EdgeJob) error
Create(ID portainer.EdgeJobID, edgeJob *portainer.EdgeJob) error
UpdateEdgeJob(ID portainer.EdgeJobID, edgeJob *portainer.EdgeJob) error
DeleteEdgeJob(ID portainer.EdgeJobID) error
GetNextIdentifier() int