stubbed in blank controllers/helpers/functional tests
This commit is contained in:
16
app/controllers/posts_controller.rb
Normal file
16
app/controllers/posts_controller.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
class PostsController < ApplicationController
|
||||
before_filter :member_only, :except => [:show, :index]
|
||||
after_filter :save_recent_tags, :only => [:create, :update]
|
||||
|
||||
def index
|
||||
end
|
||||
|
||||
def show
|
||||
end
|
||||
|
||||
def update
|
||||
end
|
||||
|
||||
def revert
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user