Adding rails part #2

This commit is contained in:
magnolia-fan
2011-04-03 20:21:05 +04:00
parent 6571a3ae0a
commit ede7fc1cb5
58 changed files with 10715 additions and 1 deletions
@@ -0,0 +1,3 @@
class ApplicationController < ActionController::Base
protect_from_forgery
end
@@ -0,0 +1,5 @@
class ArtistController < ApplicationController
def view
@artist = Artists.getByName(params[:name])
end
end