Skip to content

Commit

Permalink
simplify relation options syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
iiwo authored and rolandoalvarado committed Mar 5, 2020
1 parent fbf2b60 commit b508ae5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/acts_as_taggable_on/tagging.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Tagging < ::ActiveRecord::Base #:nodoc:
belongs_to :tag, class_name: '::ActsAsTaggableOn::Tag', counter_cache: ActsAsTaggableOn.tags_counter
belongs_to :taggable, polymorphic: true

belongs_to :tagger, {polymorphic: true}.tap {|o| o.merge!(optional: true) }
belongs_to :tagger, { polymorphic: true, optional: true }

scope :owned_by, ->(owner) { where(tagger: owner) }
scope :not_owned, -> { where(tagger_id: nil, tagger_type: nil) }
Expand Down

0 comments on commit b508ae5

Please sign in to comment.