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-10-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-03-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-07-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-25Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Add controller concern for paginated collectionsMarkus Koller
We had similar code in a few places to redirect to the last page if the given page number is out of range. This unifies the handling in a new controller concern and adds usage of it in all snippet listings.
2019-09-10Optimize queries for snippet listingsMarkus Koller
- Avoid N+1 queries for authors and comment counts - Avoid an additional snippet existence query
2019-07-18Rewrite `if:` argument in before_action and alike when `only:` is also usedGeorge Thomas
Closes #55564 This is first discovered in #54739 (comment 122609857) that if both if: and only: are used in a before_action or after_action or alike, if: is completely ignored.
2018-12-20Block private snippets from being embeddableMark Chao
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-30Show the status of a user in interactionsBob Van Landuyt
The status is shown for - The author of a commit when viewing a commit - Notes on a commit (regular/diff) - The user that triggered a pipeline when viewing a pipeline - The author of a merge request when viewing a merge request - The author of notes on a merge request (regular/diff) - The author of an issue when viewing an issue - The author of notes on an issue - The author of a snippet when viewing a snippet - The author of notes on a snippet - A user's profile page - The list of members of a group/user
2018-07-09Updates from `rubocop -a`Lin Jen-Shin
2018-02-28embedded snippets supporthaseeb
2017-09-06WIP: refactor the first-contributor to Issuablemicael.bergeron
this will remove the need make N queries (per-note) at the cost of having to mark notes with an attribute this opens up the possibility for other special roles for notes
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-21Use the new check_project_feature_available! method in project controllersNick Thomas
2017-06-07Merge branch '12910-snippets-description' into 'master'Phil Hughes
Support descriptions for snippets Closes #31894 See merge request !11071
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-31Support descriptions for snippetsJarka Kadlecova
2017-05-30Consistent diff and blob size limit namesDouwe Maan
2017-05-10Merge branch 'snippets-finder-visibility' into 'security'Douwe Maan
Refactor snippets finder & dont return internal snippets for external users See merge request !2094
2017-04-30Use blob viewers for snippetsDouwe Maan
2017-04-05Address review commentsDouwe Maan
2017-04-05Add option to start a new discussion on an MRDouwe Maan
2017-02-21Spam check and reCAPTCHA improvementsOswaldo Ferreira
2017-02-20Download snippets with LF line-endings by defaultJarka Kadlecova
2017-02-02Check public snippets for spamSean McGivern
Apply the same spam checks to public snippets (either personal snippets that are public, or public snippets on public projects) as to issues on public projects.
2016-12-22adds specs for respective behaviourTiago Botelho
2016-12-22Prevent empty pagination when list is not emptyTiago Botelho
2016-12-10add scope filters to project snippets pageMike Greiling
2016-09-19Start Frontend work, fix routing problemZ.J. van de Weg
2016-09-01Project tools visibility levelFelipe Artur
2016-07-01Fix snippets comments not displayedRémy Coutable
The issue was that @notes were not passed to Banzai::NoteRenderer.render in Projects::SnippetsController#show. This was forgotten in d470f3d1. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-03-25Ensure project snippets have their own access levelRémy Coutable