A general project refactor

Removed pins django app, and moved code to the core. Moved user related
code out of core to the users app.
This commit is contained in:
Krzysztof Klimonda
2013-03-03 04:47:34 -08:00
parent cf86da266a
commit 53f05dbb6d
25 changed files with 196 additions and 298 deletions

View File

@@ -4,8 +4,8 @@ from tastypie.exceptions import Unauthorized
from tastypie.resources import ModelResource
from django_images.models import Thumbnail
from pinry.core.models import User
from pinry.pins.models import Image, Pin
from .models import Pin, Image
from ..users.models import User
class PinryAuthorization(DjangoAuthorization):