[DO-1111] playground

This commit is contained in:
Boris Shestov
2024-11-27 12:55:06 +03:00
parent 44c303a190
commit 23fd97bd3f
10 changed files with 5 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

Binary file not shown.

View File

@@ -0,0 +1,2 @@
#Thu Sep 12 15:30:15 MSK 2024
gradle.version=8.8

View File

View File

@@ -18,10 +18,10 @@ class Gitea implements Serializable {
//TODO: refactor with Gitea token //TODO: refactor with Gitea token
/** /**
* Create new branch from source branch * Create new branch from source branch
* @param srcBranch String - source branch * @param srcBranch String - source branch
* @param dstBranch String - new branch * @param dstBranch String - new branch
* @return Boolean - success or failure create * @return Boolean - success or failure create
*/ */
public Boolean createBranch(String srcBranch, String dstBranch) { public Boolean createBranch(String srcBranch, String dstBranch) {
Map body = [ Map body = [
@@ -109,5 +109,5 @@ class Gitea implements Serializable {
return false return false
} }
} }
} }