Django CMS REST API

Contents:

About

This project aims to expose Django CMS functionality through a REST API in order to build and extend features.

Installation

$ pip install -e git+https://github.com/inonit/djangocms-restapi.git#djangocms-restapi

settings.py

INSTALLED_APPS = (
    ...
    djangocms_restapi
    ...
)

urls.py

urlpatterns = patterns(
    '',
    url(r'^/api/cms/', include('djangocms_restapi.urls'))
)

Indices and tables