Send notifiation on create UserProject relation (access granted)

This commit is contained in:
Alex Denisov 2012-08-27 00:13:03 +03:00
parent 2c32574ac3
commit aaeb37419a
6 changed files with 78 additions and 0 deletions

View file

@ -90,3 +90,8 @@ Factory.add(:milestone, Milestone) do |obj|
obj.title = Faker::Lorem.sentence
obj.due_date = Date.today + 1.month
end
Factory.add(:users_project, UsersProject) do |obj|
obj.user = Factory :user
obj.project = Factory :project
end