Sort by added time
This commit is contained in:
parent
5ca0e342de
commit
1f7eb09651
@ -4,7 +4,7 @@ var { GameModel } = require('../models/mediaModel');
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
list: function (req, res) {
|
list: function (req, res) {
|
||||||
GameModel.find({}, { _id: 0, __v: 0 })
|
GameModel.find({}, { __v: 0 })
|
||||||
.then(games => {
|
.then(games => {
|
||||||
return res.json(games);
|
return res.json(games);
|
||||||
})
|
})
|
||||||
|
@ -13,7 +13,7 @@ module.exports = {
|
|||||||
list: function (req, res) {
|
list: function (req, res) {
|
||||||
const MediaModel = req.baseUrl.includes('movies') ? MovieModel : SeriesModel;
|
const MediaModel = req.baseUrl.includes('movies') ? MovieModel : SeriesModel;
|
||||||
|
|
||||||
MediaModel.find({}, { _id: 0, __v: 0 })
|
MediaModel.find({}, { __v: 0 })
|
||||||
.then(media => {
|
.then(media => {
|
||||||
return res.json(media);
|
return res.json(media);
|
||||||
})
|
})
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
|
||||||
<li><button class="dropdown-item" id="titleButton">Title</button></li>
|
<li><button class="dropdown-item" id="titleButton">Title</button></li>
|
||||||
<li><button class="dropdown-item" id="yearButton">Year</button></li>
|
<li><button class="dropdown-item" id="yearButton">Year</button></li>
|
||||||
|
<li><button class="dropdown-item" id="idButton">Added</button></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user