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-07-21 |
Title | S2S: repoCreateTicketF: Store a Patch record in DB, to have a local copy |
Description |
Edit file src/Vervis/Federation/Ticket.hs 0 → 0
- | 791 | -> ReaderT SqlBackend m (Either Bool ()) |
|
+ | 791 | -> ReaderT SqlBackend m (Either Bool TicketId) |
|
… | … | … | … |
- | 843 | Just _rtid -> return $ Right () |
|
+ | 843 | Just _rtid -> return $ Right tid |
|
… | … | … | … |
- | 922 | for result $ \ () -> do |
|
+ | 922 | for result $ \ _tid -> do |
|
… | … | … | … |
- | 985 | mmhttp <- for (targetRelevance targetAndContext) $ \ (mb, vcs, _diff) -> runDBExcept $ do |
|
+ | 985 | mmhttp <- for (targetRelevance targetAndContext) $ \ (mb, vcs, diff) -> runDBExcept $ do |
|
- | 996 | for result $ \ () -> do |
|
+ | 996 | for result $ \ tid -> do |
|
+ | 997 | insert_ $ Patch tid published diff |
|
… | … | … | … |