liquid_feedback_frontend
view app/main/initiative/_action/remove_support.lua @ 146:77260f05fd4b
implement advanced date searches
date-date in range
since: date
age: 10 timestamp
date-date in range
since: date
age: 10 timestamp
| author | Daniel Poelzleithner <poelzi@poelzi.org> | 
|---|---|
| date | Thu Oct 07 03:34:19 2010 +0200 (2010-10-07) | 
| parents | afd9f769c7ae | 
| children | bde068b37608 | 
 line source
     1 local initiative = Initiative:new_selector():add_where{ "id = ?", param.get_id()}:single_object_mode():exec()
     3 -- TODO important m1 selectors returning result _SET_!
     4 local issue = initiative:get_reference_selector("issue"):for_share():single_object_mode():exec()
     6 if issue.closed then
     7   slot.put_into("error", _"This issue is already closed.")
     8   return false
     9 elseif issue.fully_frozen then 
    10   slot.put_into("error", _"Voting for this issue has already begun.")
    11   return false
    12 end
    14 local member = app.session.member
    16 local supporter = Supporter:by_pk(initiative.id, member.id)
    18 if supporter then  
    19   supporter:destroy()
    20   slot.put_into("notice", _"Your support has been removed from this initiative")
    21 else
    22   slot.put_into("notice", _"You are already not supporting this initiative")
    23 end
