This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
class SitesController < ApplicationController
|
|
|
|
#layout 'set_up'
|
|
|
|
def index
|
|
@site = Site.first
|
|
if @site
|
|
@title = "site"
|
|
else
|
|
redirect_to :action => :new
|
|
end
|
|
end
|
|
|
|
def new
|
|
@site = Site.new
|
|
end
|
|
|
|
end
|