aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'site/app/controllers/agendas_controller.rb')
-rw-r--r--site/app/controllers/agendas_controller.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/site/app/controllers/agendas_controller.rb b/site/app/controllers/agendas_controller.rb
index e0fd813..8760069 100644
--- a/site/app/controllers/agendas_controller.rb
+++ b/site/app/controllers/agendas_controller.rb
@@ -14,7 +14,9 @@ class AgendasController < ApplicationController
end
def results
- Agenda.process_results JSON.parse(request.env["rack.input"].read)
+ data = JSON.parse(request.env["rack.input"].read)
+ Agenda.process_results data
+ Participation.mark_participations data
end
def reminders