22 lines
340 B
Ruby
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
|