This commit is contained in:
albert
2013-03-21 17:08:46 -07:00
parent 8f6fdc73af
commit 65b5159197
3 changed files with 7 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
class TagCorrectionsController < ApplicationController
before_filter :member_only
before_filter :builder_only
def new
@correction = TagCorrection.new(params[:tag_id])

View File

@@ -1,5 +1,5 @@
class TagsController < ApplicationController
before_filter :member_only, :only => [:edit, :update]
before_filter :builder_only, :only => [:edit, :update]
respond_to :html, :xml, :json
def edit