diff options
author | charlieablett <cablett@gitlab.com> | 2019-06-14 10:20:03 +1200 |
---|---|---|
committer | charlieablett <cablett@gitlab.com> | 2019-06-26 11:47:18 +1200 |
commit | 426f1c20b19e5bd98ee0ab8bd5f8851b683a79c6 (patch) | |
tree | 14dfe36a0f72fa5fee258f7a89f94c74be6720f4 /lib/api/entities.rb | |
parent | 4633df7b9e756ae50f35246e9ba93e1c3ca1e01a (diff) | |
download | gitlab-ce-426f1c20b19e5bd98ee0ab8bd5f8851b683a79c6.tar.gz |
Remove N+1 query for project and group boards
- Add test for N+1 queries
- Add destroyable lists scope to Board and List
- Preload lists for both project and group boards
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index ead01dc53f7..d783591c238 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -1101,7 +1101,7 @@ module API expose :project, using: Entities::BasicProjectDetails expose :lists, using: Entities::List do |board| - board.lists.destroyable + board.destroyable_lists end end |