Show requests for comments and begin work on a view for executing them

This commit is contained in:
Felix Wolff
2015-03-27 18:10:47 +01:00
parent de154a6f66
commit b8ec3edef2
15 changed files with 241 additions and 10 deletions

View File

@ -0,0 +1,7 @@
class RequestForComment < ActiveRecord::Base
before_create :set_requested_timestamp
def set_requested_timestamp
self.requested_at = Time.now
end
end