|
9 | 9 |
|
10 | 10 | from community.views import ( |
11 | 11 | HomePageView, JoinCommunityView, |
12 | | - OrganizationTeams, InactiveIssuesList |
| 12 | + OrganizationTeams, InactiveIssuesList, |
| 13 | + UnassignedIssuesActivityList |
13 | 14 | ) |
14 | 15 | from gci.views import GCIStudentsList |
15 | 16 | from gci.feeds import LatestTasksFeed as gci_tasks_rss |
16 | 17 | from ci_build.view_log import BuildLogsView |
17 | 18 | from data.views import ContributorsListView |
18 | 19 | from gamification.views import GamificationResults |
19 | 20 | from meta_review.views import ContributorsMetaReview |
20 | | -from unassigned_issues.unassigned_issues_scraper import ( |
21 | | - unassigned_issues_activity_json, |
22 | | -) |
23 | 21 |
|
24 | 22 |
|
25 | 23 | def get_index(): |
@@ -84,10 +82,10 @@ def get_index(): |
84 | 82 | distill_file='inactive-issues/index.html', |
85 | 83 | ), |
86 | 84 | distill_url( |
87 | | - r'static/unassigned-issues.json', unassigned_issues_activity_json, |
88 | | - name='unassigned_issues_activity_json', |
| 85 | + r'unassigned-issues/', UnassignedIssuesActivityList.as_view(), |
| 86 | + name='unassigned-issues', |
89 | 87 | distill_func=get_index, |
90 | | - distill_file='static/unassigned-issues.json', |
| 88 | + distill_file='unassigned-issues/index.html', |
91 | 89 | ), |
92 | 90 | distill_url( |
93 | 91 | r'gamification/$', GamificationResults.as_view(), |
|
0 commit comments