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
2019-03-28Inherit from ApplicationRecord instead of ActiveRecord::BaseNick Thomas
2018-12-06Remove unnecessary includes of ShellAdapterStan Hu
Determined by running the script: ``` included = `git grep --name-only ShellAdapter`.chomp.split("\n") used = `git grep --name-only gitlab_shell`.chomp.split("\n") included - used ```
2018-08-25API: Protected tagsRobert Schilling
2018-07-27Enable frozen string in app/models/*.rbgfyoung
Partially addresses #47424.
2017-11-29Only load branch names for protected branch checksYorick Peterse
When checking if a branch is protected we don't need all columns of every protected branch row, instead we only care about the names. By using "select" here we reduce the amount of data we need to send over the wire and load into memory.
2017-05-31Backport EE refactorings for Protected Tag EE-only functionalityJames Edwards-Jones
Improvements and refactorings were made while adding role based permissions for protected tags to EE. This doesn’t backport the feature, but should improve code quality and minimize divergence.
2017-04-04Renamed ProtectedTag push_access_levels to create_access_levelsJames Edwards-Jones
2017-04-03Removed protected_tags_arrayJames Edwards-Jones
This memorized array appears to originally come from https://gitlab.com/gitlab-org/gitlab-ee/commit/19c2c90ccac86a21eb4266b9a5972162f917f692 which has a commit message of ‘fix warnings’. Without any comments on the original pull request I think we can safely get rid of it unless warnings re-appear.
2017-04-03Moved Project#protected_branch? to ProtectedBranch, similar for tagsJames Edwards-Jones
2017-04-03Extract ProtectedRef ConcernJames Edwards-Jones
2017-03-31Protected tags copy/paste from protected branchesJames Edwards-Jones
Should provide basic CRUD backend for frontend to work from. Doesn’t include frontend, API, or the internal API used from gitlab-shell