forked from bofh/fetsite
Home Controller geändert und View hinzugefügt - Beinhaltet eine Beschreibung wie Rails installiert werden muss um zu entwickeln
11 lines
134 B
Ruby
Executable File
11 lines
134 B
Ruby
Executable File
class HomeController < ApplicationController
|
|
def index
|
|
end
|
|
def dev
|
|
|
|
end
|
|
def startdev
|
|
render 'setup_fetsite_dev'
|
|
end
|
|
end
|