mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-18 22:33:44 +02:00
Add basic subuser listing for servers
This commit is contained in:
@@ -38,6 +38,16 @@ export function httpErrorToHuman (error: any): string {
|
||||
return error.message;
|
||||
}
|
||||
|
||||
export interface FractalResponseData {
|
||||
object: string;
|
||||
attributes: {
|
||||
[k: string]: any;
|
||||
relationships?: {
|
||||
[k: string]: FractalResponseData;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
export interface PaginatedResult<T> {
|
||||
items: T[];
|
||||
pagination: PaginationDataSet;
|
||||
|
||||
Reference in New Issue
Block a user