Files
danbooru/app/controllers/artists_controller.rb
2011-10-03 15:02:12 -04:00

58 lines
1.3 KiB
Ruby

class ArtistsController < ApplicationController
respond_to :html, :xml, :json
before_filter :member_only, :except => [:index, :show]
def new
@artist = Artist.new_with_defaults(params)
respond_with(@artist)
end
def edit
@artist = Artist.find(params[:id])
respond_with(@artist)
end
def banned
@artists = Artist.where("is_banned = ?", true).order("name")
respond_with(@artists)
end
def index
@search = Artist.search(params[:search])
@artists = @search.paginate(params[:page])
respond_with(@artists) do |format|
format.json do
render :json => @artists.to_json(:include => [:urls])
end
end
end
def search
@search = Artist.search(params[:search])
end
def show
@artist = Artist.find(params[:id])
@post_set = PostSets::Artist.new(@artist)
respond_with(@artist)
end
def create
@artist = Artist.create(params[:artist])
respond_with(@artist)
end
def update
@artist = Artist.find(params[:id])
@artist.update_attributes(params[:artist])
respond_with(@artist)
end
def revert
@artist = Artist.find(params[:id])
@version = ArtistVersion.find(params[:version_id])
@artist.revert_to!(@version)
respond_with(@artist)
end
end