summaryrefslogtreecommitdiff
path: root/app/models/alert.rb
blob: e8a4cf2550f3737cb62499838d665951346554d1 (plain)
1
2
3
4
5
6
7
class Alert < ActiveRecord::Base
	belongs_to :author, class_name: "User"

	def owned_by?(user)
		self.author == user
	end
end