5 lines
109 B
Ruby
5 lines
109 B
Ruby
|
|
class ModerationLog < ApplicationRecord
|
||
|
|
belongs_to :moderatable, polymorphic: true
|
||
|
|
belongs_to :admin
|
||
|
|
end
|