NOTE: Federation is disabled on this instance!
You can test federation between the following instances:forge.angeley.es
code.angeley.es
By | fr33domlover |
At | 2020-08-17 |
Title | Don't accept Darcs MRs with more than one patch bundle file |
Description |
Edit file src/Vervis/API.hs 0 → 0
+ | 692 | case (typ, diffs) of |
|
+ | 693 | (PatchMediaTypeDarcs, _ :| _ : _) -> |
|
+ | 694 | throwE "More than one Darcs patch bundle provided" |
|
+ | 695 | _ -> return () |
|
… | … | … | … |
+ | 1488 | case (typ, diffs) of |
|
+ | 1489 | (PatchMediaTypeDarcs, _ :| _ : _) -> |
|
+ | 1490 | throwE "More than one Darcs patch bundle provided" |
|
+ | 1491 | _ -> return () |
|
… | … | … | … |
Edit file src/Vervis/Federation/Ticket.hs 0 → 0
+ | 157 | case (typ, diffs) of |
|
+ | 158 | (PatchMediaTypeDarcs, _ :| _ : _) -> |
|
+ | 159 | throwE "More than one Darcs patch bundle provided" |
|
+ | 160 | _ -> return () |
|
… | … | … | … |
+ | 622 | case (typ, patches) of |
|
+ | 623 | (PatchMediaTypeDarcs, _ :| _ : _) -> |
|
+ | 624 | throwE "More than one Darcs patch bundle provided" |
|
+ | 625 | _ -> return () |
|
… | … | … | … |