6 lines
130 B
Ruby
6 lines
130 B
Ruby
class StatsController < ApplicationController
|
|
def show
|
|
@event_types = Ahoy::Event.select(:name).uniq.pluck(:name)
|
|
end
|
|
end
|