diff options
author | 2011-06-24 15:00:40 +0200 | |
---|---|---|
committer | 2011-06-24 18:50:06 +0200 | |
commit | 13bef04afeacceb530aa159cfb5ada789b7f4380 (patch) | |
tree | fb0807cd4b0b76023fa850eb2f2582da52dbd6ed /site/app/models/agenda.rb | |
parent | Add support for #timelimit (add|list|remove) commands (diff) | |
download | council-webapp-13bef04afeacceb530aa159cfb5ada789b7f4380.tar.gz council-webapp-13bef04afeacceb530aa159cfb5ada789b7f4380.tar.bz2 council-webapp-13bef04afeacceb530aa159cfb5ada789b7f4380.zip |
Send timelimits to bot
Diffstat (limited to 'site/app/models/agenda.rb')
-rw-r--r-- | site/app/models/agenda.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/app/models/agenda.rb b/site/app/models/agenda.rb index baaac89..65f45b4 100644 --- a/site/app/models/agenda.rb +++ b/site/app/models/agenda.rb @@ -91,7 +91,7 @@ class Agenda < ActiveRecord::Base def voting_array agenda_items.collect do |item| - [item.title, item.voting_options.*.description] + [item.title, item.voting_options.*.description, item.timelimits] end end |