(name, direction)
| 177 | } |
| 178 | |
| 179 | defaultSortBy(name, direction) { |
| 180 | if (!this.hasSort()) { |
| 181 | return this.sortBy(name, direction); |
| 182 | } |
| 183 | return this; |
| 184 | } |
| 185 | |
| 186 | limit(count) { |
| 187 | return this.set('limit', `${count}`); |
no test coverage detected