Skip to content

Instantly share code, notes, and snippets.

@agungsetiawan
Last active March 18, 2020 14:52
Show Gist options
  • Save agungsetiawan/cb62f1f759a55b924e1d39c06119687c to your computer and use it in GitHub Desktop.
Save agungsetiawan/cb62f1f759a55b924e1d39c06119687c to your computer and use it in GitHub Desktop.
class AssetInventory < ApplicationRecord
belongs_to :asset_type
after_save :update_asset_accuracy
def update_asset_accuracy
asset_type.set_accuracy
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment