feat(portal-ui): enhance user and device information display in admin and user devices tables

This commit is contained in:
2025-06-30 22:58:44 +05:00
parent 01b064aee7
commit 3cd3bbad16
5 changed files with 29 additions and 14 deletions

View File

@ -1,3 +1,5 @@
import { User } from "./types/user";
export interface Links {
next_page: string | null;
previous_page: string | null;
@ -45,7 +47,9 @@ export interface Device {
expiry_date: string | null;
created_at: string;
updated_at: string;
user: number;
user: Pick<User, "id" | "id_card" | "mobile"> & {
name: string;
};
}
export interface ApiError {