Add ssh keys panel
[arvados-workbench2.git] / src / services / authorized-keys-service / authorized-keys-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 { SshKeyResource } from '~/models/ssh-key';
7 import { CommonResourceService } from "~/services/common-service/common-resource-service";
8 import { ApiActions } from "~/services/api/api-actions";
9
10 export class AuthorizedKeysService extends CommonResourceService<SshKeyResource> {
11     constructor(serverApi: AxiosInstance, actions: ApiActions) {
12         super(serverApi, "authorized_keys", actions);
13     }
14 }