Skip to content

Commit 375302b

Browse files
committed
Merge branch 'feature/mentorship-portal' into pr/Rajgupta36/2567
2 parents 4bc7c49 + 6b20a94 commit 375302b

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Generated by Django 5.2.6 on 2025-11-16 20:15
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("github", "0037_issue_level_comment"),
9+
("github", "0038_pullrequest_related_issues"),
10+
]
11+
12+
operations = []

backend/apps/mentorship/management/commands/sync_module_issues.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ def _process_module(
143143
if task.status != status:
144144
updates["status"] = status
145145

146-
if issue.repository:
146+
# Only fetch assigned_at when needed.
147+
if (created or task.assigned_at is None) and issue.repository:
147148
repo_full_name = self._extract_repo_full_name(issue.repository)
148149
if repo_full_name:
149150
if repo_full_name not in repo_cache:

frontend/src/app/mentorship/programs/[programKey]/modules/[moduleKey]/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const ModuleDetailsPage = () => {
6565
admins={admins}
6666
tags={module.tags}
6767
domains={module.domains}
68+
labels={module.labels}
6869
summary={module.description}
6970
mentors={module.mentors}
7071
type="module"

0 commit comments

Comments
 (0)