updates the ghuser on login

This commit is contained in:
Jonas Obrist 2012-08-18 17:57:24 +02:00
parent 603c29c8b4
commit 055e10b97e
9 changed files with 166 additions and 62 deletions

7
githubnetwork/admin.py Normal file
View file

@ -0,0 +1,7 @@
# -*- coding: utf-8 -*-
from django.contrib import admin
from githubnetwork.models import GHUser, Repo
admin.site.register(GHUser)
admin.site.register(Repo)