Ignore:
Timestamp:
02/07/26 21:16:37 (5 months ago)
Author:
Filip Gavrilovski <filipgavrilovski28@…>
Branches:
main
Children:
799f27d
Parents:
8675f75
Message:

clickable items now take the user to the respective pages; added artist username and album id to dto-s

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/utils/types.ts

    r8675f75 r8ccb07e  
    2222        type: string;
    2323        releasedBy: string;
     24        artistUsername?: string;
    2425        cover?: string | null;
    2526        isLikedByCurrentUser?: boolean;
     
    2930        type: "SONG";
    3031        album?: string;
     32        albumId?: number;
    3133        link?: string;
    3234}
     
    9294        title: string;
    9395        artist: string;
     96        artistUsername?: string;
    9497        cover?: string;
    9598        link?: string;
     99        album?: string;
     100        albumId?: number;
    96101}
    97102
Note: See TracChangeset for help on using the changeset viewer.