joomla-developer-docs
joomla-developer-docs copied to clipboard
User Contributed Notes
Devise a plan for accepting user contributed notes as you would find on php.net. Maybe via Disqus or some other service provider.
Or we could create a simple home-grown FW RESTful app to support comments across the org? Keep it simple with Auth via Github and the following API
GET /comments/:siteId- get a list of comments for a whole siteGET /comments/:siteId/:pageId- get a list of the comments for a site and pagePOST /comments/:siteId/:pageId- post a new comment to a pagePUT /comments/:commentId- update a comment's title or bodyDELETE /comments/:commentId- remove a commentPATCH /comments/:commentId/:action- where:actioncan be approve | mark as spam etc
Plus we'd need some auth end-points.
That's obviously a bigger project than taking something off the shelf (and I'd push the milestone out if we did want to grow our own).
This will be a huge feature though I do not have an idea how to handle it... :confused:
So, heh, just read this on the AngularJS site http://blog.angularjs.org/2013/11/farewell-disqus.html
I think that approach is worth considering.