mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 05:15:53 +10:00
10 lines
170 B
Ruby
10 lines
170 B
Ruby
class ShareInstance < ActiveRecord::Base
|
|
|
|
belongs_to :sharable, polymorphic: true
|
|
belongs_to :user
|
|
|
|
delegate :name, to: :user, prefix: true
|
|
|
|
acts_as_paranoid
|
|
end
|