liquid_feedback_frontend

view model/non_voter.lua @ 1800:b87997219042

Updated spanish translation
author bsw
date Thu Oct 21 15:22:29 2021 +0200 (2021-10-21)
parents 2e9d39b53b64
children
line source
1 NonVoter = mondelefant.new_class()
2 NonVoter.table = 'non_voter'
3 NonVoter.primary_key = { "issue_id", "member_id" }
5 function NonVoter:by_pk(issue_id, member_id)
6 return self:new_selector()
7 :add_where{ "issue_id = ? AND member_id = ?", issue_id, member_id }
8 :optional_object_mode()
9 :exec()
10 end

Impressum / About Us