Skip to main content

Mentorship Relation Documentation

A Mentorship Relation is when two Users, a mentor, and a mentee are matched together to mentor and support each other. This is a 1 to 1 relation, involving just 2 users, during a certain period of time.

A Mentorship Relation request is when a User sends a sort of contract in which the other User has to accept so that a mentorship relation can start. This contract contains notes/description, the definition of who will be the mentor and the mentee and the end date of the relation. Currently, this contract cannot be edited after sent by the User.

Conceptual Implementation#

Considering two users, User 1 and User 2. Let's say User 1 sends a mentorship request to User 2 (next image illustrates this).

User 1 sends a mentorship relation request to User 2

Looking at the next image, you can consider these 3 stages:

  • (1): Before a request is sent
  • (2): When the User receives a request
  • (3): After a relation starts

Relation states and stages#

Stages and states of a Mentorship Relation

The next table explains more of the image above.

StateWho can trigger thisHow is this triggeredConstraints
PENDINGAny User (E.g.: User 1 and User 2)A User sends/creates a mentorship relation request using the frontend application or backend APIN/A
ACCEPTEDThe User that received the request (E.g.: User 2)The User that received the request can accept this using the frontend application or backend APISets only if the relation is in the PENDING state
REJECTEDThe User that received the request (E.g.: User 2)The User that received the request can reject this using the frontend application or backend APISets only if the relation is in the PENDING state
CANCELLEDBoth Users participation in a current relation (E.g.: User 1 and User 2)Any of the 2 Users participating in the relation can cancel the current relation both on the frontend application or backend APISets only if the relation is in the ACCEPTED state
COMPLETEDA cron job running every day 23h59 (automatically)A cron job in the backend iterates over every mentorship relation, in the ACCEPTED state, and sets this states for relations that passed the end dateSets only if the relation is in the ACCEPTED state

Note: Even though is not represented in the previous image, the User that sent the mentorship request can delete the request if its state wasn't changed by the receiving User.