blob: 0949c6ef08344092758e48d80093526f9de573ae (
plain)
1
2
3
4
5
6
7
8
9
|
class UserAgentDetail < ActiveRecord::Base
belongs_to :subject, polymorphic: true
validates :user_agent, :ip_address, :subject_id, :subject_type, presence: true
def submittable?
!submitted?
end
end
|