Sha256: 275c7fc9f3fb1aad8e6075a7b5698373e5dcbf419546cc977e3832f3dede4bee
Contents?: true
Size: 341 Bytes
Versions: 121
Compression:
Stored size: 341 Bytes
Contents
# frozen_string_literal: true module Renalware module Patients class User < ActiveType::Record[Renalware::User] has_many :bookmarks, dependent: :restrict_with_exception has_many :patients, through: :bookmarks def bookmark_for_patient(patient) bookmarks.find_by(patient: patient) end end end end
Version data entries
121 entries across 121 versions & 1 rubygems