[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

View File

@@ -18,10 +18,10 @@ class Gitea implements Serializable {
//TODO: refactor with Gitea token
/**
* Create new branch from source branch
* Create new branch from source branch
* @param srcBranch String - source 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) {
Map body = [
@@ -109,5 +109,5 @@ class Gitea implements Serializable {
return false
}
}
}