Sha256: ace18896b1268607c7ba3e2291ed84a315eb3b094efaa84abad729ea5f96e52a

Contents?: true

Size: 286 Bytes

Versions: 160

Compression:

Stored size: 286 Bytes

Contents

module WithProfile
  extend ActiveSupport::Concern

  module ClassMethods
    def for_profile(profile)
      where(uid: profile.uid).first_or_initialize.tap do |user|
        user.assign_attributes(profile.to_h.compact)
        user.save_and_notify_changes!
      end
    end
  end
end

Version data entries

160 entries across 160 versions & 2 rubygems

Version Path
mumuki-domain-9.23.0 app/models/concerns/with_profile.rb
mumuki-domain-9.22.1 app/models/concerns/with_profile.rb
mumuki-domain-9.22.0 app/models/concerns/with_profile.rb
mumuki-domain-9.21.0 app/models/concerns/with_profile.rb
mumuki-domain-9.20.0 app/models/concerns/with_profile.rb
mumuki-domain-9.19.0 app/models/concerns/with_profile.rb
mumuki-domain-9.18.0 app/models/concerns/with_profile.rb
mumuki-domain-9.17.0 app/models/concerns/with_profile.rb
mumuki-domain-9.16.0 app/models/concerns/with_profile.rb
mumuki-domain-9.15.0 app/models/concerns/with_profile.rb
mumuki-domain-9.14.1 app/models/concerns/with_profile.rb
mumuki-domain-9.14.0 app/models/concerns/with_profile.rb
mumuki-domain-9.13.1 app/models/concerns/with_profile.rb
mumuki-domain-9.13.0 app/models/concerns/with_profile.rb
mumuki-domain-9.12.0 app/models/concerns/with_profile.rb
mumuki-domain-9.11.0 app/models/concerns/with_profile.rb
mumuki-domain-9.10.0 app/models/concerns/with_profile.rb
mumuki-domain-9.9.0 app/models/concerns/with_profile.rb
mumuki-domain-9.8.1 app/models/concerns/with_profile.rb
mumuki-domain-9.8.0 app/models/concerns/with_profile.rb