9 lines
129 B
Ruby
9 lines
129 B
Ruby
class PagesController < ApplicationController
|
|
|
|
require 'statistics'
|
|
|
|
def landing
|
|
@statistics = Statistics.new
|
|
end
|
|
|
|
end
|