Add about page with feedback functionality

This commit is contained in:
2014-10-02 17:06:52 +02:00
parent 7c03b4c32c
commit b8ef4943bd
22 changed files with 153 additions and 10 deletions
+1
View File
@@ -24,6 +24,7 @@ class User
before_save :ensure_authentication_token
has_many :error_logs
has_many :user_feedbacks
view :by_authentication_token, key: :authentication_token
view :by_email, key: :email
+5
View File
@@ -0,0 +1,5 @@
class UserFeedback
include SimplyStored::Couch
property :content
belongs_to :user
end