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