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-06-07Fix tasks completed headerClement Ho
2018-05-24Fix collapsed sidebar tooltipsClement Ho
2018-04-19Merge branch 'master' into bootstrap4Clement Ho
2018-04-19Resolve "Improve tooltips of collapsed sidebars"Dennis Tang
2018-04-10[skip ci] Fix bad migrations of -block to -inline-blockClement Ho
2018-04-10[skip ci] Replace hidden-xsClement Ho
2018-04-10[Skip ci] replace .hidden-lgClement Ho
2018-04-09Fix bad merge conflictClement Ho
2018-04-03Check if at least one filter is set on dashboardJan Provaznik
When listing issues and merge requests on dasboard page, make sure that at least one filter is enabled. User's id is used in search autocomplete widget instead of username, which allows presetting user in filter dropdowns. Related to #43246
2018-03-21Issuable list: add tooltips to iconsLukas Eipert
2018-03-05Replace deprecated name_with_namespace with full_name in app and specDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-02-26Don't convert issuable_initial_data into JSONJan Provaznik
Instead of converting hash into JSON inside issuable_initial_data method, return hash and convert to JSON later. This allows us to easily extend basic issuable data with resource specific values. For example for Epic these data should include also labels, so we can then do something like: issuable_initial_data(@epic).merge(labels: @epic.labels).to_json
2018-01-19Merge branch '41247-timestamp' into 'master'Robert Speicher
Use last_edited_at instead of updated_at for displaying issuable last change Closes #41247 See merge request gitlab-org/gitlab-ce!16406
2018-01-18Remove unnecessary query from labels filterFelipe Artur
2018-01-18Return last edited time instead of update timeJan Provaznik
For issuable models we keep two timestamps: updated_at which is updated whenever any model attribute is changed, last_edited_at which is changed when only title or description is changed. In UI bellow description we display who and when updated the item. But last_edited_by (used for 'who') is mistakenly combined with updated_at (when), last_edited_at should be used instead. Closes #41247
2017-12-20Use UserSerializer instead of `User.to_json`Robert Speicher
2017-12-15Stop sending milestone and labels data over the wire for MR widgetOswaldo Ferreira
requests
2017-11-29Backport epic tasklistClement Ho
2017-11-07Refactor issuables index actionsJarka Kadlecova
2017-11-02CE port of code changed for epicsJarka Kadlecova
2017-10-31Load participants asyncEric Eastwood
2017-10-12Cache issuable template namesSean McGivern
We were looking these up on each request to an issue page, because the form is pre-filled, as is the template dropdown. That was unnecessary: we could just treat these as 'special' repository files (like the rendered README) and cache them in Redis until they change on a push.
2017-09-28Use relative paths for opening and closing issuablesBob Van Landuyt
The abuse reports need a full issuable URL, but linking to issuables should use the relative paths
2017-09-11Remove confidential toggle checkbox and related code as no longer necessarykushalpandya
2017-09-07Merge branch 'ee_issue_928_backport' into 'master'Sean McGivern
Group boards CE backport See merge request !13883
2017-09-06Merge branch '35161_first_time_contributor_badge' into 'master'Sean McGivern
First time contributor badge Closes #35161 See merge request !13902
2017-09-06fixup whitespacemicael.bergeron
2017-09-06rework the contributor badgemicael.bergeron
- only show in merge-requests - show as a little glyph
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-09-06removed show_new_nav? referencesPhil Hughes
2017-09-06Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵Simon Knox
ee_issue_928_backport
2017-09-05Merge branch 'master' into breadcrumbs-improvementsPhil Hughes
2017-09-05Re-use issue/MR counts for the pagination systemYorick Peterse
This changes the issue and MR index pages so the pagination system re-uses the output of the COUNT(*) query used to calculate the number of rows per state (opened, closed, etc). This removes the need for an additional COUNT(*) on both pages.
2017-09-05Merge branch 'master' into breadcrumbs-improvementsPhil Hughes
2017-09-04Merge branch 'master' into breadcrumbs-improvementsPhil Hughes
2017-09-04Merge branch 'remove-unused-code-issueshelper' into 'master'Rémy Coutable
Remove unused methods from `IssuesHelper` and `IssuablesHelper` See merge request !13793
2017-09-04Move "Move to different project" to sidebarEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/34261
2017-09-02Merge branch 'issue-discussions-refactor' into 'master'Jacob Schatz
Issue discussions Vue refactor See merge request !12069
2017-09-02Ensure `issuables_count_for_state` returns the requested state countRobert Speicher
2017-08-31Remove issuable finder count cachingSean McGivern
We're going to cache the total open count separately, and then just perform these counts on the list. We already do that to get the pagination information, through Kaminari, and a future change will make Kaminari reuse the query results from earlier in the request.
2017-08-30Merge branch 'master' into breadcrumbs-improvementsPhil Hughes
2017-08-30Merge branch 'master' into issue-discussions-refactorDouwe Maan
# Conflicts: # app/models/issue.rb
2017-08-29replace `is_edited?` with `edited?`Maxim Rydkin
2017-08-29Group boards CE backportFelipe Artur
2017-08-24Removed unused `IssuablesHelper#issuable_state_scope`Mehdi Lahmam
Its last usage has been removed at 260c8da060.
2017-08-18fix some inconsistencies with the breadcrumbsPhil Hughes
2017-08-17Rename a few attribute suffixes from `_url` to `_path`Douwe Maan
2017-08-17Merge branch 'master' into issue-discussions-refactorDouwe Maan
# Conflicts: # package.json # spec/support/features/reportable_note_shared_examples.rb
2017-08-14Whitelist or fix additional `Gitlab/PublicSend` cop violationsRobert Speicher
An upcoming update to rubocop-gitlab-security added additional violations.
2017-08-11Fix failing static-analysis (rubocop)Jarka Kadlecova