forked from coala/community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
community/: Display contributor statistics
Show the contributor statistics in the form of charts. The charts will be shown for issues, commits, reviews and for merge requests. And, an overall chart, which will display stats repository wise. Apart from all these charts, the type of issues the contrib has worked on will be shown, with the count of issues the user is working on and the last updated datetime the user data was updated. All this will be shown, only if there is some statistics, otherwise the popup option willn't be shown. Closes coala#268
- Loading branch information
Showing
6 changed files
with
921 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generated by Django 2.1.7 on 2019-07-27 13:48 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('data', '0006_auto_20190615_1331'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='contributor', | ||
name='is_gci_participant', | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name='contributor', | ||
name='oauth_completed', | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name='contributor', | ||
name='statistics', | ||
field=models.TextField(default=None, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='contributor', | ||
name='type_of_issues_worked_on', | ||
field=models.TextField(default=None, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='contributor', | ||
name='updated_at', | ||
field=models.TextField(default=None, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='contributor', | ||
name='working_on_issues_count', | ||
field=models.TextField(default=None, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.