oldhaven/app/controllers/page_controller.rb

22 lines
340 B
Ruby
Raw Normal View History

2011-11-27 12:41:28 +04:00
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