gitea/routers/api/v1
Terence Le Huu Phuong 141d52cc0f
Add API Endpoint for Branch Creation (#11607)
* [FEATURE] [API] Add Endpoint for Branch Creation

Issue: https://github.com/go-gitea/gitea/issues/11376

This commit introduces an API endpoint for branch creation.

The added route is POST /repos/{owner}/{repo}/branches.
A JSON with the name of the new branch and the name of the old branch is
required as parameters.

Signed-off-by: Terence Le Huu Phuong <terence@qwasar.io>

* Put all the logic into CreateBranch and removed CreateRepoBranch

* - Added the error ErrBranchDoesNotExist in error.go
- Made the CreateNewBranch function return an errBranchDoesNotExist error
when the OldBranch does not exist
- Made the CreateBranch API function checks that the repository is not
empty and that branch exists.

* - Added a resetFixtures helper function in integration_test.go to
fine-tune test env resetting
- Added api test for CreateBranch
- Used resetFixture instead of the more general prepareTestEnv in the
repo_branch_test CreateBranch tests

* Moved the resetFixtures call inside the loop for APICreateBranch function

* Put the prepareTestEnv back in repo_branch_test

* fix import order/sort api branch test

Co-authored-by: zeripath <art27@cantab.net>
2020-05-29 19:16:20 +01:00
..
admin Various fixes in login sources (#10428) 2020-02-23 13:52:05 -06:00
misc Allow different HardBreaks settings for documents and comments (#11515) 2020-05-24 09:14:26 +01:00
notify [Api] Check Notify (always return json) (#10059) 2020-04-10 19:49:39 -04:00
org Add Organization Wide Labels (#10814) 2020-04-01 01:14:46 -03:00
repo Add API Endpoint for Branch Creation (#11607) 2020-05-29 19:16:20 +01:00
swagger Add API Endpoint for Branch Creation (#11607) 2020-05-29 19:16:20 +01:00
user Handle expected errors in AddGPGkey API (#11644) 2020-05-28 17:25:54 -04:00
utils Granular webhook events (#9626) 2020-03-06 07:10:48 +02:00
api.go Add API Endpoint for Branch Creation (#11607) 2020-05-29 19:16:20 +01:00