Files
fetsite/app/controllers/home_controller.rb
2013-10-06 18:51:33 +02:00

15 lines
254 B
Ruby
Executable File

class HomeController < ApplicationController
def index
@beispiele = Beispiel.last([Beispiel.count, 3].min)
end
def dev
end
def startdev
render 'setup_fetsite_dev'
end
def linksnotimplemented
render 'links_notimplemented'
end
end