2011-04-13 10:19:51 +00:00
|
|
|
class SitesController < ApplicationController
|
|
|
|
|
|
|
|
#layout 'set_up'
|
|
|
|
|
|
|
|
def index
|
|
|
|
@site = Site.first
|
2011-08-18 05:43:33 +00:00
|
|
|
redirect_to :action => :new unless @site
|
2011-04-13 10:19:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@site = Site.new
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|