Remove unused callbacks in the `Topic` model

This commit is contained in:
Ryuta Kamizono 2019-04-10 17:53:12 +09:00
parent faf07d1468
commit b33ccaa6c3
1 changed files with 0 additions and 4 deletions

View File

@ -56,9 +56,7 @@ class Topic < ActiveRecord::Base
alias_attribute :heading, :title
before_validation :before_validation_for_transaction
before_save :before_save_for_transaction
before_destroy :before_destroy_for_transaction
after_save :after_save_for_transaction
after_create :after_create_for_transaction
@ -108,9 +106,7 @@ class Topic < ActiveRecord::Base
end
end
def before_validation_for_transaction; end
def before_save_for_transaction; end
def before_destroy_for_transaction; end
def after_save_for_transaction; end
def after_create_for_transaction; end