* chore: added issue relation and page sort order * feat: add ProjectWebhook model to manage webhooks associated with projects * chore: updated the migration file * chore: added migration * chore: reverted the page base code * chore: added a variable for sort order in pages --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
28 lines
980 B
Python
28 lines
980 B
Python
def get_inverse_relation(relation_type):
|
|
relation_mapping = {
|
|
"start_after": "start_before",
|
|
"finish_after": "finish_before",
|
|
"blocked_by": "blocking",
|
|
"blocking": "blocked_by",
|
|
"start_before": "start_after",
|
|
"finish_before": "finish_after",
|
|
"implemented_by": "implements",
|
|
"implements": "implemented_by",
|
|
}
|
|
return relation_mapping.get(relation_type, relation_type)
|
|
|
|
|
|
def get_actual_relation(relation_type):
|
|
# This function is used to get the actual relation type which is stored in database
|
|
actual_relation = {
|
|
"start_after": "start_before",
|
|
"finish_after": "finish_before",
|
|
"blocking": "blocked_by",
|
|
"blocked_by": "blocked_by",
|
|
"start_before": "start_before",
|
|
"finish_before": "finish_before",
|
|
"implemented_by": "implemented_by",
|
|
"implements": "implemented_by",
|
|
}
|
|
|
|
return actual_relation.get(relation_type, relation_type)
|