Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2022-10-07 | 1 | -1/+1 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2022-03-23 | 1 | -4/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2022-03-22 | 1 | -0/+2 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2021-08-11 | 1 | -1/+1 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2021-07-22 | 1 | -0/+6 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2021-04-21 | 1 | -0/+4 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2021-03-16 | 1 | -0/+1 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-10-12 | 1 | -17/+4 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-10-06 | 1 | -4/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-08-18 | 1 | -0/+4 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-07-10 | 1 | -1/+1 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-06-22 | 1 | -2/+2 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-06-16 | 1 | -83/+3 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-05-13 | 1 | -9/+2 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-03-20 | 1 | -10/+0 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-03-10 | 1 | -1/+8 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-03-09 | 1 | -1/+1 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-02-25 | 1 | -1/+10 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-02-05 | 1 | -0/+4 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-01-23 | 1 | -12/+12 |
| | |||||
* | Add latest changes from gitlab-org/gitlab@master | GitLab Bot | 2020-01-17 | 1 | -8/+15 |
| | |||||
* | Add controller concern for paginated collections65988-optimize-snippet-listings | Markus Koller | 2019-09-10 | 1 | -3/+2 |
| | | | | | | 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. | ||||
* | Optimize queries for snippet listings | Markus Koller | 2019-09-10 | 1 | -7/+9 |
| | | | | | - Avoid N+1 queries for authors and comment counts - Avoid an additional snippet existence query | ||||
* | Rewrite `if:` argument in before_action and alike when `only:` is also used | George Thomas | 2019-07-18 | 1 | -1/+2 |
| | | | | | | 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. | ||||
* | Block private snippets from being embeddable | Mark Chao | 2018-12-20 | 1 | -1/+8 |
| | |||||
* | Enable even more frozen string in app/controllers | gfyoung | 2018-09-25 | 1 | -0/+2 |
| | | | | | | | | | | | | 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. | ||||
* | Show the status of a user in interactions | Bob Van Landuyt | 2018-07-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | 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 | ||||
* | Updates from `rubocop -a` | Lin Jen-Shin | 2018-07-09 | 1 | -1/+1 |
| | |||||
* | embedded snippets support | haseeb | 2018-02-28 | 1 | -0/+3 |
| | |||||
* | WIP: refactor the first-contributor to Issuable | micael.bergeron | 2017-09-06 | 1 | -1/+1 |
| | | | | | | | 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 | ||||
* | Create and use project path helpers that only need a project, no namespace | Douwe Maan | 2017-07-05 | 1 | -2/+6 |
| | |||||
* | Use the new check_project_feature_available! method in project controllers | Nick Thomas | 2017-06-21 | 1 | -5/+1 |
| | |||||
* | Merge branch '12910-snippets-description' into 'master' | Phil Hughes | 2017-06-07 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | Support descriptions for snippets Closes #31894 See merge request !11071 | ||||
| * | Support descriptions for snippets | Jarka Kadlecova | 2017-05-31 | 1 | -1/+1 |
| | | |||||
* | | Add a rubocop rule to check if a method 'redirect_to' is used without ↵31840-add-a-rubocop-that-forbids-redirect_to-inside-a-controller-destroy-action-without-an-explicit-status | blackst0ne | 2017-06-07 | 1 | -1/+1 |
| | | | | | | | | explicitly set 'status' in 'destroy' actions of controllers | ||||
* | | Consistent diff and blob size limit names | Douwe Maan | 2017-05-29 | 1 | -1/+1 |
|/ | |||||
* | Merge branch 'snippets-finder-visibility' into 'security' | Douwe Maan | 2017-05-10 | 1 | -3/+2 |
| | | | | | | Refactor snippets finder & dont return internal snippets for external users See merge request !2094 | ||||
* | Use blob viewers for snippets | Douwe Maan | 2017-04-30 | 1 | -5/+18 |
| | |||||
* | Address review comments | Douwe Maan | 2017-04-05 | 1 | -1/+1 |
| | |||||
* | Add option to start a new discussion on an MR | Douwe Maan | 2017-04-05 | 1 | -1/+4 |
| | |||||
* | Spam check and reCAPTCHA improvements28093-snippet-and-issue-spam-check-on-edit | Oswaldo Ferreira | 2017-02-21 | 1 | -13/+8 |
| | |||||
* | Download snippets with LF line-endings by default | Jarka Kadlecova | 2017-02-20 | 1 | -12/+1 |
| | |||||
* | Check public snippets for spam | Sean McGivern | 2017-02-02 | 1 | -3/+5 |
| | | | | | | 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. | ||||
* | adds specs for respective behaviour | Tiago Botelho | 2016-12-21 | 1 | -2/+4 |
| | |||||
* | Prevent empty pagination when list is not empty | Tiago Botelho | 2016-12-21 | 1 | -1/+2 |
| | |||||
* | add scope filters to project snippets page | Mike Greiling | 2016-12-10 | 1 | -3/+5 |
| | |||||
* | Start Frontend work, fix routing problem | Z.J. van de Weg | 2016-09-19 | 1 | -1/+4 |
| | |||||
* | Project tools visibility level | Felipe Artur | 2016-09-01 | 1 | -1/+1 |
| | |||||
* | Fix snippets comments not displayed19388-fix-snippets-notes-not-shown | Rémy Coutable | 2016-07-01 | 1 | -1/+1 |
| | | | | | | | 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> | ||||
* | Ensure project snippets have their own access level | Rémy Coutable | 2016-03-25 | 1 | -1/+1 |
| |