mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 08:35:43 +00:00
b77c9be36f
* bump prettier/eslint-plugin * bump nuxt pwa * use typed imports * set vue version to fix layout errors * disable import
30 lines
793 B
TypeScript
30 lines
793 B
TypeScript
import { BaseAPI, route } from "./base";
|
|
import type { APISummary, LoginForm, TokenResponse, UserRegistration } from "./types/data-contracts";
|
|
|
|
export type StatusResult = {
|
|
health: boolean;
|
|
versions: string[];
|
|
title: string;
|
|
message: string;
|
|
};
|
|
|
|
export class PublicApi extends BaseAPI {
|
|
public status() {
|
|
return this.http.get<APISummary>({ url: route("/status") });
|
|
}
|
|
|
|
public login(username: string, password: string, stayLoggedIn = false) {
|
|
return this.http.post<LoginForm, TokenResponse>({
|
|
url: route("/users/login"),
|
|
body: {
|
|
username,
|
|
password,
|
|
stayLoggedIn,
|
|
},
|
|
});
|
|
}
|
|
|
|
public register(body: UserRegistration) {
|
|
return this.http.post<UserRegistration, TokenResponse>({ url: route("/users/register"), body });
|
|
}
|
|
}
|