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
2022-03-18Add latest changes from gitlab-org/gitlab@14-9-stable-eev14.9.0-rc42GitLab Bot
2021-09-20Add latest changes from gitlab-org/gitlab@14-3-stable-eev14.3.0-rc42GitLab Bot
2021-08-19Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42GitLab Bot
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
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-07-09Updates from `rubocop -a`Lin Jen-Shin
2018-05-31Improve `Ci::Runner#assign_to` to return a flag whether it succeeded or notKamil Trzciński
2018-05-07Inline runner_path and runners_path helpersDylan Griffith
These were just shorthands for project_... and they will be confusing when introducing group runners so we should not have them (#10244)
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
2016-06-29Use Ability to check pre-requisite. Change back to 403 because:Lin Jen-Shin
If we're using `can?` it would look weird to use 409
2016-06-28Use 409 to indicate that interface might be outdatedLin Jen-Shin
Because invalid actions shouldn't be shown on the page.
2016-06-15Fix typo. It's ivar and the column was called lockedLin Jen-Shin
2016-06-14Return the association and check it in controller instead:Lin Jen-Shin
Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4641#note_12444891
2016-06-14Avoid enabling locked runners. Give 403 in this caseLin Jen-Shin
2016-02-02Make the CI permission model simplerKamil Trzcinski
This MR simplifies CI permission model: - read_build: allows to read a list of builds, artifacts and trace - update_build: allows to cancel and retry builds - create_build: allows to create builds from gitlab-ci.yml (not yet implemented) - admin_build: allows to manage triggers, runners and variables - read_commit_status: allows to read a list of commit statuses (including the overall of builds) - create_commit_status: allows to create a new commit status using API Remove all extra methods to manage permission. Made all controllers to use explicitly the new permissions.
2015-12-11Remove ci_ prefix from all ci related thingsKamil Trzcinski
2015-12-11Migrate CI::Project to ProjectKamil Trzcinski