19231: Add smaller page sizes (10 and 20 items) to load faster
[arvados-workbench2.git] / src / services / log-service / log-service.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { AxiosInstance } from "axios";
6 import { LogResource } from 'models/log';
7 import { CommonResourceService } from "services/common-service/common-resource-service";
8 import { ApiActions } from "services/api/api-actions";
9
10 export class LogService extends CommonResourceService<LogResource> {
11     constructor(serverApi: AxiosInstance, actions: ApiActions) {
12         super(serverApi, "logs", actions);
13     }
14 }