Files
nomad/ui/app/controllers/servers.js
Buck Doyle 5d325351a5 Fix query parameters structures
I’d think the codemod would handle this if it’s a requirement
but apparently not, is it a bug?
2020-06-15 09:52:31 -05:00

32 lines
617 B
JavaScript

import { alias } from '@ember/object/computed';
import Controller from '@ember/controller';
import Sortable from 'nomad-ui/mixins/sortable';
export default class ServersController extends Controller.extend(Sortable) {
@alias('model.nodes') nodes;
@alias('model.agents') agents;
queryParams = [
{
currentPage: 'page',
},
{
sortProperty: 'sort',
},
{
sortDescending: 'desc',
},
];
currentPage = 1;
pageSize = 8;
sortProperty = 'isLeader';
sortDescending = true;
isForbidden = false;
@alias('agents') listToSort;
@alias('listSorted') sortedAgents;
}