summaryrefslogtreecommitdiffstats
path: root/modules/validation/binding.go
Commit message (Collapse)AuthorAgeFilesLines
* [API] Get a single commit via Ref (#10915)65432020-04-071-15/+25
| | | | | | | | | * GET /repos/:owner/:repo/commits/:ref * add Validation Checks * Fix & Extend TEST * add two new tast cases
* Implement webhook branch filter (#7791)WGH2019-09-091-0/+25
| | | | | | | | * Fix validate() function to handle errors in embedded anon structs * Implement webhook branch filter See #2025, #3998.
* Use gitea forked macaron (#7933)Tamal Saha2019-08-231-1/+1
| | | Signed-off-by: Tamal Saha <tamal@appscode.com>
* Clean up ref name rules (#6437)mrsdizzie2019-03-261-2/+5
| | | | | | | | | | | | | | | | | * Clean up ref name rules Clean up checks on reference names to better conform to the guideline here: https://git-scm.com/docs/git-check-ref-format This fixes half of #6321 * Update branch create integration test According to: https://git-scm.com/docs/git-check-ref-format And: git check-ref-format "master/feature=test1" This is a valid branch name and we should not be testing for it to fail.
* Improve URL validation for external wiki and external issues (#4710)Lauris BH2018-08-151-8/+3
| | | | | | * Improve URL validation for external wiki and external issues * Do not allow also localhost address for external URLs
* Add tag check to release draft creation (#3729)Bwko2018-06-041-1/+1
|
* Create new branch from branch selection dropdown (#2130)Lauris BH2017-10-151-3/+9
| | | | | | | | | | * Create new branch from branch selection dropdown and rewrite it to VueJS * Make updateLocalCopyToCommit as not exported * Move branch name validation to model * Fix possible race condition
* Better URL validation (#1507)Lauris BH2017-04-191-0/+102
* Add correct git branch name validation * Change git refname validation error constant name * Implement URL validation based on GoLang url.Parse method * Backward compatibility with older Go compiler * Add git reference name validation unit tests * Remove unused variable in unit test * Implement URL validation based on GoLang url.Parse method * Backward compatibility with older Go compiler * Add url validation unit tests