({
list,
kindSlug,
perPage = defaultPerPage
})
| 54 | |
| 55 | export class KindList extends PaginatedList { |
| 56 | constructor({ |
| 57 | list, |
| 58 | kindSlug, |
| 59 | perPage = defaultPerPage |
| 60 | }) { |
| 61 | super({ list, perPage }) |
| 62 | |
| 63 | this.kindSlug = kindSlug |
| 64 | } |
| 65 | |
| 66 | baseRoute = makeKindEndpoint({ kindSlug: this.kindSlug }) |
| 67 |
nothing calls this directly
no outgoing calls
no test coverage detected