oldhaven/app/controllers/page_controller.rb
2011-11-27 12:41:28 +04:00

22 lines
340 B
Ruby

class PageController < ApplicationController
def index
# Something
end
def greetings
render partial: 'greetings'
end
def about
render partial: 'about'
end
def stat
@artists = Artist.count
@albums = Album.count
@tracks = Track.count
@users = User.count
render partial: 'stat'
end
end