mirror of
https://github.com/kemko/nomad.git
synced 2026-01-09 03:45:41 +03:00
I’d think the codemod would handle this if it’s a requirement but apparently not, is it a bug?
32 lines
617 B
JavaScript
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;
|
|
}
|