mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-24 06:28:34 +01:00
feat: add lookup by asset ID (#208)
* add asset id redirecting
* dev env changes
* suggested changes from PR
* remove unnecessary proxy from nuxt config
* fix formatting
* change directory reference
* fix API key storage
* use /a/{id} as redirect
* run generators
* remove dependabot
Co-authored-by: Bradley Nelson <bradley@nel.family>
Co-authored-by: Bradley Nelson <BCNelson@users.noreply.github.com>
This commit is contained in:
11
frontend/lib/api/classes/assets.ts
Normal file
11
frontend/lib/api/classes/assets.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { BaseAPI, route } from "../base";
|
||||
import { ItemSummary } from "../types/data-contracts";
|
||||
import { PaginationResult } from "../types/non-generated";
|
||||
|
||||
export class AssetsApi extends BaseAPI {
|
||||
async get(id: string, page = 1, pageSize = 50) {
|
||||
return await this.http.get<PaginationResult<ItemSummary>>({
|
||||
url: route(`/asset/${id}`, { page, pageSize }),
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user