14 lines
358 B
Ruby
14 lines
358 B
Ruby
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
class Invitation
|
|
include MongoMapper::Document
|
|
|
|
belongs_to :from, :class => User
|
|
belongs_to :to, :class => User
|
|
belongs_to :into, :class => Aspect
|
|
|
|
validates_presence_of :from, :to, :into
|
|
|
|
end
|