Datawalke / Coordino

Self-hosted Knowledge Software your question & answer system written on top of the CakePHP Framework
http://coordino.com
MIT License
714 stars 173 forks source link

How do I export all of the Q&A data within a Coordino instance ? #109

Closed ravikiranj closed 8 years ago

ravikiranj commented 9 years ago

Hi, Is it possible to extract all questions and answers along with user/vote data as JSON ? At the minimum, I'm trying to grab following data in JSON format. Any pointers would be really useful.

[
 {"post_title":"", 
  "post_author":"",
   "post_timestamp":"",
   "post_text":"",
   "post_views:"",
   "comments": [{"comment_text":"", "author":"", "timestamp":"", "votes":""}]
  }
...
]
ravikiranj commented 8 years ago

I wrote one for myself since there was no reply on this issue.