liquid_feedback_frontend
annotate model/opinion.lua @ 5:afd9f769c7ae
Version beta1
Final voting with Schulze-Method is now possible
Many bug fixes and code cleanup
Registration with invite codes
More sort and filter options
Seperated display of "supporters" and "potential supporters"
Optical changes
Flood limit / initiative contigent is now checked by frontend
Neccessary changes to access core beta11
Final voting with Schulze-Method is now possible
Many bug fixes and code cleanup
Registration with invite codes
More sort and filter options
Seperated display of "supporters" and "potential supporters"
Optical changes
Flood limit / initiative contigent is now checked by frontend
Neccessary changes to access core beta11
author | bsw/jbe |
---|---|
date | Fri Dec 25 12:00:00 2009 +0100 (2009-12-25) |
parents | 3bfb2fcf7ab9 |
children | 4188405c2425 |
rev | line source |
---|---|
bsw/jbe@0 | 1 Opinion = mondelefant.new_class() |
bsw/jbe@0 | 2 Opinion.table = 'opinion' |
bsw/jbe@0 | 3 Opinion.primary_key = { "member_id", "suggestion_id" } |
bsw/jbe@0 | 4 |
bsw/jbe@0 | 5 Opinion:add_reference{ |
bsw/jbe@0 | 6 mode = 'm1', |
bsw/jbe@0 | 7 to = "Initiative", |
bsw/jbe@0 | 8 this_key = 'initiative_id', |
bsw/jbe@0 | 9 that_key = 'id', |
bsw/jbe@0 | 10 ref = 'initiative', |
bsw/jbe@0 | 11 } |
bsw/jbe@0 | 12 |
bsw/jbe@0 | 13 Opinion:add_reference{ |
bsw/jbe@0 | 14 mode = 'm1', |
bsw/jbe@0 | 15 to = "Suggestion", |
bsw/jbe@0 | 16 this_key = 'suggestion_id', |
bsw/jbe@0 | 17 that_key = 'id', |
bsw/jbe@0 | 18 ref = 'suggestion', |
bsw/jbe@0 | 19 } |
bsw/jbe@0 | 20 |
bsw/jbe@0 | 21 Opinion:add_reference{ |
bsw/jbe@0 | 22 mode = 'm1', |
bsw/jbe@0 | 23 to = "Member", |
bsw/jbe@0 | 24 this_key = 'member_id', |
bsw/jbe@0 | 25 that_key = 'id', |
bsw/jbe@0 | 26 ref = 'member', |
bsw/jbe@0 | 27 } |
bsw/jbe@0 | 28 |
bsw/jbe@0 | 29 function Opinion:by_pk(member_id, suggestion_id) |
bsw/jbe@0 | 30 return self:new_selector() |
bsw/jbe@0 | 31 :add_where{ "member_id = ?", member_id } |
bsw/jbe@0 | 32 :add_where{ "suggestion_id = ?", suggestion_id } |
bsw/jbe@0 | 33 :optional_object_mode() |
bsw/jbe@0 | 34 :exec() |
bsw/jbe@0 | 35 end |