Files
edx-platform/lms/lib/comment_client/commentable.py
Sarina Canelake 467f2988e1 Quality cleanup
2014-09-08 12:02:31 -04:00

9 lines
204 B
Python

"""Provides base Commentable model class"""
import models
import settings
class Commentable(models.Model):
base_url = "{prefix}/commentables".format(prefix=settings.PREFIX)
type = 'commentable'