mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-02 03:38:22 +00:00
feat(portal-ui): enhance user and device information display in admin and user devices tables ✨
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user