Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-09-01Add latest changes from gitlab-org/security/gitlab@13-3-stable-eeGitLab Bot
2020-02-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-03-27Externalize strings in projects controllersMartin Wortschack
- concerns - dashboard - groups - import
2018-09-26Enable even more frozen string in app/controllersgfyoung
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
2018-08-13Filter project hooks by branchDuana Saskia
Allow specificying a branch filter for a project hook and only trigger a project hook if either the branch filter is blank or the branch matches. Only supported for push_events for now.
2018-07-09Updates from `rubocop -a`Lin Jen-Shin
2018-07-03Fixed pagination of web hook logsYorick Peterse
For reasons unknown, the logs of a web hook were paginated in memory. This would result in the "Edit" page of a web hook timing out once it has more than a few thousand log entries. This commit makes the following changes: 1. We use LIMIT/OFFSET to paginate the data, instead of doing this in memory. 2. We limit the logs to the last two days, just like the documentation says (instead of retrieving everything). 3. We change the indexes on "web_hook_logs" so the query to get the data can perform a backwards index scan, without the need for a Filter. These changes combined ensure that Projects::HooksController#edit no longer times out.
2018-01-18Merge branch 'feature/merge-request-system-hook' into 'master'Douwe Maan
System hooks for Merge Requests See merge request gitlab-org/gitlab-ce!14387
2018-01-17reference triggers.values for permitted parametersAlexis Reigel
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉
2017-07-20Wrong data type when testing webhooksAlexander Randa
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-07Add a rubocop rule to check if a method 'redirect_to' is used without ↵blackst0ne
explicitly set 'status' in 'destroy' actions of controllers
2017-05-25Implement web hooks loggingAlexander Randa
* implemented logging of project and system web hooks * implemented UI for user area (project hooks) * implemented UI for admin area (system hooks) * implemented retry of logged webhook * NOT imeplemented log remover
2017-04-28Implement ability to update hooksAlexander Randa
2017-04-12Fix API not accepting job_events for webhooksZ.J. van de Weg
When renaming, the argument on the projects hook API was forgotten. Now one could successfully set it again. The fix is a little ugly stylewise, but needed as the underlying model still refers to it as build_events. This commit is to fix it, later we should migrate the data to a new column. The edit on the spec file makes sure it passes now, and will fail when we migrate the column.
2017-01-19Fixed tests and a rubocop linterJose Ivan Vargas
2017-01-19Removed the index action from both the projects hook and services controllersJose Ivan Vargas
2017-01-19Moved the webhooks and services gear options to a single one called integrationsJose Ivan Vargas
2016-09-01Add option to confidential issues events to trigger WebhooksDouglas Barbosa Alexandre
2016-08-02Implement pipeline hooks, extracted from !5525Lin Jen-Shin
Closes #20115
2016-05-30Add Admin UI to enable Wiki Page events webhook in projectsGabriel Mazetto
2016-05-03Always mention HTTP statusJacob Vosmaer
2016-05-03Inform user about questionable hook successJacob Vosmaer
2016-05-03Improve documentation and web test for web hooksJacob Vosmaer
I wanted to share what I learned trying to debug web hooks using netcat.
2016-05-02Added UI to define secret_token for webhook and systemhookGabriel Mazetto
Codestyle changes to easy EE merge
2015-12-10Migrate CI::Services and CI::WebHooks to Services and WebHooksKamil Trzcinski
2015-12-04Handle and report SSL errors in Web hook test. Check for status 200 for success.Stan Hu
If a Web hook test fails due to an SSL error or some other error, report the result back to the user instead of an Error 500. Closes #3656 Handle response
2015-10-20Redirect to a default path if HTTP_REFERER is not setStan Hu
Safari 9.0 does not yet honor the HTML5 `origin-when-cross-origin` mode, and it's possible load balancers/proxies strip the HTTP_REFERER from the request header. In these cases, default to some default path. Closes #3122 Closes https://github.com/gitlabhq/gitlabhq/issues/9731
2015-08-26Enable SSL verification for WebhooksValery Sizov
2015-05-22Add support for Webhook note eventsStan Hu
Closes https://github.com/gitlabhq/gitlabhq/issues/6745
2015-04-20Fixed the Rails/ActionFilter copJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-02-14Upgrade to Rails 4.1.9Vinnie Okada
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
2014-12-04Handle web hook exceptionDmitriy Zaporozhets
Write to log if web hook cant be executed. This prevents 500 error when test web hook with invalid URL and prevent exceptions and retries in sidekiq Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-29Prevent 500 if hook url is down, fixes #7376Robert Schilling
2014-07-28Do not execute hooks on empty projects, fixes #6108Robert Schilling
2014-06-26Project hook, milestone, snippet strong paramsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-06-26team member and hook strong paramsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-04-06Fix url generation error on hook invalid createskv
2014-01-15Convert TestHookContext into TestHookService. Added testsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-12-15fix most of warningsskv
2013-09-25Modify permissions for project and groupDmitriy Zaporozhets
* Hooks and team pages allowed only for masters/owners * Group page allowed for admin * Corrent authentication for Projects controller * Hide some project elements from visitor
2013-06-23Move projects controllers/views in Projects moduleDmitriy Zaporozhets