nitc :: APIStars :: defaultinit
# Stars attributed to mentities
class APIStars
super APIFeedBack
redef fun get(req, res) do
var login = get_session_login(req)
var mentity = mentity_from_uri(req, res)
if mentity == null then return
res.api_json(req, mentity.ratings(config, login))
end
end
src/doc/api/api_feedback.nit:110,1--120,3