liquid_feedback_frontend
view model/member_count.lua @ 1220:af42478acf74
Avoid executing commands after error in lf4rcs.commit(...)
| author | jbe | 
|---|---|
| date | Tue Dec 01 02:10:04 2015 +0100 (2015-12-01) | 
| parents | a85f7ea61ef6 | 
| children | 
 line source
     1 MemberCount = mondelefant.new_class()
     2 MemberCount.table = 'member_count'
     4 function MemberCount:get()
     5   if not MemberCount.total_count then
     6     local member_count = self:new_selector():optional_object_mode():exec()
     7     if member_count then
     8       MemberCount.total_count = member_count.total_count
     9     end
    10   end
    11   return MemberCount.total_count
    12 end
