sim: add missing parser for action sendwanted
This commit is contained in:
parent
ae19ad0fa1
commit
e0128b6362
1 changed files with 2 additions and 0 deletions
|
@ -195,6 +195,8 @@ parseSimAction ("action":repo:"sync":remote:rest) =
|
|||
mkAction rest $ ActionSync (RepoName repo) (RemoteName remote)
|
||||
parseSimAction ("action":repo:"getwanted":remote:rest) =
|
||||
mkAction rest $ ActionGetWanted (RepoName repo) (RemoteName remote)
|
||||
parseSimAction ("action":repo:"sendwanted":remote:rest) =
|
||||
mkAction rest $ ActionSendWanted (RepoName repo) (RemoteName remote)
|
||||
parseSimAction ("action":repo:"dropunwanted":rest) =
|
||||
mkAction rest $ ActionDropUnwanted (RepoName repo) Nothing
|
||||
parseSimAction ("action":repo:"dropunwanted":remote:rest) =
|
||||
|
|
Loading…
Reference in a new issue