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
2018-04-18Resolve "Make a Rubocop that forbids returning from a block"🙈 jacopo beschi 🙉
2018-03-22Make Variable key not secretMatija Čupić
2018-03-17Alias secret_key and secret_value to key and valueMatija Čupić
2018-03-16Use secret_key and secret_value in Variables controllerMatija Čupić
2018-02-06Fix static_analysis failureMatija Čupić
2018-02-05Switch emphasis from controller format to updateMatija Čupić
2018-02-05Remove usage of VariablePresenter in controllerMatija Čupić
2018-02-05Add VariableSerializer for Ci::VariableMatija Čupić
2018-02-05Return all variables after UPDATEMatija Čupić
2018-02-05Use `resource` in Project Variables routing schemeMatija Čupić
2018-02-05Format validation errors as human readable messagesMatija Čupić
2018-02-05Pass validation errors in JSON endpointMatija Čupić
2018-02-05Remove redundant routes in VariablesControllerMatija Čupić
2018-02-05Use nested attributes for updating multiple variablesMatija Čupić
2018-02-05Add destroy functionality to save_multipleMatija Čupić
2018-02-05Move variable loading into before_actionMatija Čupić
2018-02-05Refactor VariablesController#save_multipleMatija Čupić
2018-02-05Implement multiple variable handling actionMatija Čupić
2018-02-05Stub multiple variable controller methodMatija Čupić
2017-07-07Use variable_params && variable_params_attributes in project ↵Shinya Maeda
variables_controller.rb
2017-07-07Use new project_variables_path in this MRShinya Maeda
2017-07-07gb nice catchesShinya Maeda
2017-07-07Adopt project_variable_path instead of namespace_project_variable_path. ↵Shinya Maeda
(Resolve confilct from master)
2017-07-07ayufan nice catchesShinya Maeda
2017-07-07Fix variables_controller.rb and formatShinya Maeda
2017-07-07Basic BE changeShinya Maeda
Fix static-snalysis Move the precedence of group secure variable before project secure variable. Allow project_id to be null. Separate Ci::VariableProject and Ci::VariableGroup Add the forgotton files Add migration file to update type of ci_variables Fix form_for fpr VariableProject Fix test Change the table structure according to the yorik advice Add necessary migration files. Remove unnecessary migration spec. Revert safe_model_attributes.yml Fix models Fix spec Avoid self.variable. Use becomes for correct routing. Use unique index on group_id and key Add null: false for t.timestamps Fix schema version Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable Rename the rest of them Add the rest of files Basic BE change Fix static-snalysis Move the precedence of group secure variable before project secure variable. Allow project_id to be null. Separate Ci::VariableProject and Ci::VariableGroup Add the forgotton files Add migration file to update type of ci_variables Fix form_for fpr VariableProject Fix test Change the table structure according to the yorik advice Add necessary migration files. Remove unnecessary migration spec. Revert safe_model_attributes.yml Fix models Fix spec Avoid self.variable. Use becomes for correct routing. Use unique index on group_id and key Add null: false for t.timestamps Fix schema version Rename VariableProject and VariableGroup to ProjectVariable and GroupVariable Rename the rest of them Add the rest of files Implement CURD Rename codes related to VariableGroup and VariableProject FE part Remove unneccesary changes Make Fe code up-to-date Add protected flag to migration file Protected group variables essential package Update schema Improve doc Fix logic and spec for models Fix logic and spec for controllers Fix logic and spec for views(pre feature) Add feature spec Fixed bugs. placeholder. reveal button. doc. Add changelog Remove unnecessary comment godfat nice catches Improve secret_variables_for arctecture Fix spec Fix StaticAnlysys & path_regex spec Revert "Improve secret_variables_for arctecture" This reverts commit c3216ca212322ecf6ca534cb12ce75811a4e77f1. Use ayufan suggestion for secret_variables_for Use find instead of find_by Fix spec message for variable is invalid Fix spec remove variable.group_id = group.id godffat spec nitpicks Use include Gitlab::Routing.url_helpers for presenter spec
2017-07-06Backports for ee-2112Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/2112
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-25Frontend implementation, tests, and changelogLin Jen-Shin
2017-02-06Updated the #create action to render the show view in case of a form errorJose Ivan Vargas
2017-02-06Improved code styling on the variables_controller_specJose Ivan Vargas
Also updated the #update action inside the variables controller as to render the show and not redirect back to the settings route
2017-02-06Added tests for the variables controller #update actionJose Ivan Vargas
2017-02-06Modified redirection logic in the variables cont.Jose Ivan Vargas
Redirections now show a flash message wether the variable was created correctly or not using a flash message
2017-02-06Added redirections to the index actions for the variables and triggers ↵Jose Ivan Vargas
controllers
2017-02-06Changed the controller/route name to 'ci/cd' and renamed the corresponding filesJose Ivan Vargas
Added tests to verify the access policy to the new controller
2017-02-06changed pipelines controller name to ci_cd_pipelinesJose Ivan Vargas
2017-02-06Converted the views to partials that compose the menu item "pipelines"Jose Ivan Vargas
2016-05-16Project variables UIPhil Hughes
Closes #14091
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
2015-09-28Move CI variables page to project settingsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>