wiki page func test
This commit is contained in:
@@ -1,25 +1,49 @@
|
||||
class WikiPagesController < ApplicationController
|
||||
respond_to :html, :xml, :json
|
||||
before_filter :member_only, :except => [:index, :show]
|
||||
before_filter :moderator_only, :only => [:destroy]
|
||||
|
||||
def new
|
||||
@wiki_page = WikiPage.new
|
||||
respond_with(@wiki_page)
|
||||
end
|
||||
|
||||
def edit
|
||||
@wiki_page = WikiPage.find(params[:id])
|
||||
respond_with(@wiki_page)
|
||||
end
|
||||
|
||||
def index
|
||||
@search = WikiPage.search(params[:search])
|
||||
@wiki_pages = @search.paginate(:page => params[:page])
|
||||
end
|
||||
|
||||
def show
|
||||
@wiki_page = WikiPage.find(params[:id])
|
||||
respond_with(@wiki_page)
|
||||
end
|
||||
|
||||
def create
|
||||
@wiki_page = WikiPage.create(params[:wiki_page])
|
||||
respond_with(@wiki_page)
|
||||
end
|
||||
|
||||
def update
|
||||
@wiki_page = WikiPage.find(params[:id])
|
||||
@wiki_page.update_attributes(params[:wiki_page])
|
||||
respond_with(@wiki_page)
|
||||
end
|
||||
|
||||
def destroy
|
||||
@wiki_page = WikiPage.find(params[:id])
|
||||
@wiki_page.destroy
|
||||
respond_with(@wiki_page)
|
||||
end
|
||||
|
||||
def revert
|
||||
@wiki_page = WikiPage.find(params[:id])
|
||||
@version = WikiPageVersion.find(params[:version_id])
|
||||
@wiki_page.revert_to!(@version)
|
||||
respond_with(@wiki_page)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -9,7 +9,7 @@ class WikiPage < ActiveRecord::Base
|
||||
scope :titled, lambda {|title| where(["title = ?", title.downcase.tr(" ", "_")])}
|
||||
has_one :tag, :foreign_key => "name", :primary_key => "title"
|
||||
has_one :artist, :foreign_key => "name", :primary_key => "title"
|
||||
has_many :versions, :class_name => "WikiPageVersion"
|
||||
has_many :versions, :class_name => "WikiPageVersion", :dependent => :destroy
|
||||
|
||||
def self.build_relation(options = {})
|
||||
relation = where()
|
||||
|
||||
0
app/views/wiki_pages/edit.html.erb
Normal file
0
app/views/wiki_pages/edit.html.erb
Normal file
0
app/views/wiki_pages/index.html.erb
Normal file
0
app/views/wiki_pages/index.html.erb
Normal file
0
app/views/wiki_pages/new.html.erb
Normal file
0
app/views/wiki_pages/new.html.erb
Normal file
0
app/views/wiki_pages/show.html.erb
Normal file
0
app/views/wiki_pages/show.html.erb
Normal file
Reference in New Issue
Block a user