Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-04 23:11:51 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-04 23:11:51 +0400
commit25856a47e5a757e88a33218cc51367f6171db1c4 (patch)
treebe29c3ec4d3cdfcc0ce7913834f434b9dda8ed4a /spec
parent3c3baf8f6d7799039cf16db044c9873f79137a49 (diff)
save each notification setting with ajax on change
Diffstat (limited to 'spec')
-rw-r--r--spec/models/project_spec.rb1
-rw-r--r--spec/models/users_project_spec.rb13
2 files changed, 8 insertions, 6 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index cbc7f278c2a..3ecf69795e3 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -19,6 +19,7 @@
# issues_tracker :string(255) default("gitlab"), not null
# issues_tracker_id :string(255)
# snippets_enabled :boolean default(TRUE), not null
+# last_activity_at :datetime
#
require 'spec_helper'
diff --git a/spec/models/users_project_spec.rb b/spec/models/users_project_spec.rb
index e8f5b647ce0..e289a592b03 100644
--- a/spec/models/users_project_spec.rb
+++ b/spec/models/users_project_spec.rb
@@ -2,12 +2,13 @@
#
# Table name: users_projects
#
-# id :integer not null, primary key
-# user_id :integer not null
-# project_id :integer not null
-# created_at :datetime not null
-# updated_at :datetime not null
-# project_access :integer default(0), not null
+# id :integer not null, primary key
+# user_id :integer not null
+# project_id :integer not null
+# created_at :datetime not null
+# updated_at :datetime not null
+# project_access :integer default(0), not null
+# notification_level :integer default(3), not null
#
require 'spec_helper'