Ignore:
Timestamp:
01/05/23 04:11:40 (18 months ago)
Author:
andrejtodorovski <82031894+andrejtodorovski@…>
Branches:
main
Children:
1bd8d1e
Parents:
7d43957
Message:

Added admin view of pending roles and approve functionality

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/autopartz/model/Client.java

    r7d43957 r676144b  
    2828        if (o == null || Hibernate.getClass(this) != Hibernate.getClass(o)) return false;
    2929        Client client = (Client) o;
    30         return ID_user != null && Objects.equals(ID_user, client.ID_user);
     30        return id != null && Objects.equals(id, client.id);
    3131    }
    3232
Note: See TracChangeset for help on using the changeset viewer.