Files
edx-platform/lms/lib/comment_client/commentable.py
2014-11-04 07:37:41 -05:00

10 lines
205 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'