liquid_feedback_frontend
view app/main/interest/_action/xhr_update.lua @ 1800:b87997219042
Updated spanish translation
| author | bsw | 
|---|---|
| date | Thu Oct 21 15:22:29 2021 +0200 (2021-10-21) | 
| parents | 4188405c2425 | 
| children | 
 line source
     1 local issue_id = param.get("issue_id", atom.integer)
     2 local interested = param.get("interested", atom.boolean)
     4 slot.set_layout()
     6 if Interest:update(issue_id, app.session.member, interested) then
     7   slot.put_into("data", "ok")
     8 else
     9   request.set_status("500 Internal Server Error")
    10 end
