(apeKey: ApeKeysDAL.DBApeKey)
| 17 | import { MonkeyRequest } from "../types"; |
| 18 | |
| 19 | function cleanApeKey(apeKey: ApeKeysDAL.DBApeKey): ApeKey { |
| 20 | return omit(apeKey, ["hash", "_id", "uid", "useCount"]); |
| 21 | } |
| 22 | |
| 23 | export async function getApeKeys( |
| 24 | req: MonkeyRequest, |
no test coverage detected