Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
codes_pool
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
codes_pool
Merge requests
!1
#3124589
- Clean up and table update
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
#3124589
- Clean up and table update
issue/codes_pool-3124589:8.x-2.x
into
8.x-2.x
Overview
1
Commits
4
Pipelines
0
Changes
14
All threads resolved!
Hide all comments
Merged
Vijay Mani
requested to merge
issue/codes_pool-3124589:8.x-2.x
into
8.x-2.x
4 years ago
Overview
1
Commits
4
Pipelines
0
Changes
14
All threads resolved!
Hide all comments
Expand
Closes
#3124589
Edited
4 years ago
by
Vijay Mani
0
0
Merge request reports
Compare
8.x-2.x
version 4
6668cc98
4 years ago
version 3
daa8223c
4 years ago
version 2
95abb1b3
4 years ago
version 1
97da335e
4 years ago
8.x-2.x (base)
and
latest version
latest version
6668cc98
4 commits,
4 years ago
version 4
6668cc98
4 commits,
4 years ago
version 3
daa8223c
3 commits,
4 years ago
version 2
95abb1b3
2 commits,
4 years ago
version 1
97da335e
1 commit,
4 years ago
14 files
+
216
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
src/Controller/CodesController.php
+
1
−
0
Options
@@ -75,6 +75,7 @@ class CodesController extends ControllerBase {
$query
=
$this
->
database
->
select
(
$source
->
getTableName
(),
'c'
)
->
extend
(
PagerSelectExtender
::
class
);
$codes
=
$query
->
fields
(
'c'
,
[
'id'
,
'code'
,
'status'
,
'created'
,
'changed'
])
->
condition
(
'c.entity_id'
,
$codes_pool_collection
->
id
())
->
orderBy
(
'c.changed'
,
'DESC'
)
->
limit
(
10
)
->
execute
()
Loading