Skip to content
Paul Dilyard edited this page Sep 23, 2015 · 2 revisions

*Create/update the about page

PUT /about
Auth -> admin, staff
{
  "text": String    // markdown
}

HTTP/1.1 200 OK
{
  "_id": String,
  "updated": Date,
  "text": String
}

Retrieve the about page

GET /about

HTTP/1.1 200 OK
{
  "_id": String,
  "text": String,
  "updated": Date
}
Clone this wiki locally