|
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 |
|
18 | 19 | from data.views import ContributorsListView |
19 | 20 | from gamification.views import GamificationResults |
20 | 21 | from meta_review.views import ContributorsMetaReview |
21 | | -from unassigned_issues.unassigned_issues_scraper import ( |
22 | | - unassigned_issues_activity_json, |
23 | | -) |
24 | 22 |
|
25 | 23 |
|
26 | 24 | def get_index(): |
@@ -91,10 +89,10 @@ def get_index(): |
91 | 89 | distill_file='inactive-issues/index.html', |
92 | 90 | ), |
93 | 91 | distill_url( |
94 | | - r'static/unassigned-issues.json', unassigned_issues_activity_json, |
95 | | - name='unassigned_issues_activity_json', |
| 92 | + r'unassigned-issues/', UnassignedIssuesActivityList.as_view(), |
| 93 | + name='unassigned-issues', |
96 | 94 | distill_func=get_index, |
97 | | - distill_file='static/unassigned-issues.json', |
| 95 | + distill_file='unassigned-issues/index.html', |
98 | 96 | ), |
99 | 97 | distill_url( |
100 | 98 | r'gamification/$', GamificationResults.as_view(), |
|
0 commit comments