Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.wcc.platform.domain.platform.mentorship;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.wcc.platform.domain.cms.attributes.Country;
import com.wcc.platform.domain.cms.attributes.Image;
import com.wcc.platform.domain.cms.attributes.PronounCategory;
Expand Down Expand Up @@ -29,6 +30,12 @@
@SuppressWarnings({"PMD.ExcessiveParameterList", "PMD.ImmutableField"})
public class Mentee extends Member {

/**
* Approval status of the mentee. Read-only over the API: clients cannot set or change it through
* the registration payload; it is managed server-side (defaults to PENDING on creation and is
* only changed via the admin approval flow).
*/
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
private ProfileStatus profileStatus;

@NotNull(message = "Skills must be provided")
Expand Down
Loading