2015-10-05 12:40:08 +02:00
|
|
|
class PagesController < ApplicationController
|
2015-10-06 14:10:53 +02:00
|
|
|
def map
|
2016-04-04 23:42:48 +02:00
|
|
|
@supporters = Supporter.where(:coordinates.ne => nil).only(:coordinates, :support)
|
2015-10-06 14:10:53 +02:00
|
|
|
end
|
2015-10-05 12:40:08 +02:00
|
|
|
end
|