Skip to content

Commit

Permalink
(BEDS-477) add url to clients notification table (#872)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuccaBitfly authored Sep 19, 2024
1 parent 62d7b22 commit 17918e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/pkg/api/types/notifications.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ type InternalGetUserNotificationMachinesResponse ApiPagingResponse[NotificationM
type NotificationClientsTableRow struct {
ClientName string `json:"client_name"`
Version string `json:"version"`
Url string `json:"url"`
Timestamp int64 `json:"timestamp"`
}

Expand Down
1 change: 1 addition & 0 deletions frontend/types/api/notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export type InternalGetUserNotificationMachinesResponse = ApiPagingResponse<Noti
export interface NotificationClientsTableRow {
client_name: string;
version: string;
url: string;
timestamp: number /* int64 */;
}
export type InternalGetUserNotificationClientsResponse = ApiPagingResponse<NotificationClientsTableRow>;
Expand Down

0 comments on commit 17918e6

Please sign in to comment.