New Feature: Staff can choose to "Take Action" when flagging to immediately reach hiding

thresholds.
This commit is contained in:
Robin Ward
2013-05-31 17:38:28 -04:00
parent 476ffcc627
commit 545dbfc07e
19 changed files with 194 additions and 135 deletions

View File

@ -0,0 +1,5 @@
class AddStaffTookActionToPostActions < ActiveRecord::Migration
def change
add_column :post_actions, :staff_took_action, :boolean, default: false, null: false
end
end