File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
share-api/src/Share/Web/Share/Branches Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ type ProjectBranchesAPI =
2121type ProjectBranchResourceAPI =
2222 ( (" readme" :> ProjectBranchReadmeEndpoint )
2323 :<|> (" releaseNotes" :> ProjectBranchReleaseNotesEndpoint )
24+ :<|> (" history" :> ProjectBranchHistoryEndpoint )
2425 :<|> ProjectBranchDetailsEndpoint
2526 :<|> ProjectBranchDeleteEndpoint
26- :<|> ProjectBranchHistoryEndpoint
2727 :<|> CodeBrowseAPI
2828 )
2929
Original file line number Diff line number Diff line change @@ -88,9 +88,9 @@ branchesServer session userHandle projectSlug =
8888 hoistServer (Proxy @ API. ProjectBranchResourceAPI ) (addTags branchShortHand) $
8989 ( getProjectBranchReadmeEndpoint session userHandle projectSlug branchShortHand
9090 :<|> getProjectBranchReleaseNotesEndpoint session userHandle projectSlug branchShortHand
91+ :<|> branchHistoryEndpoint session userHandle projectSlug branchShortHand
9192 :<|> getProjectBranchDetailsEndpoint session userHandle projectSlug branchShortHand
9293 :<|> deleteProjectBranchEndpoint session userHandle projectSlug branchShortHand
93- :<|> branchHistoryEndpoint session userHandle projectSlug branchShortHand
9494 :<|> branchCodeBrowsingServer session userHandle projectSlug branchShortHand
9595 )
9696 )
You can’t perform that action at this time.
0 commit comments