blob: f79bf1dca215e4aeeed4e604fef9cfc9a3c3843a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# models/info_request.rb:
# A Freedom of Information request.
#
# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved.
# Email: francis@mysociety.org; WWW: http://www.mysociety.org/
#
# $Id: info_request.rb,v 1.2 2007-08-21 11:33:45 francis Exp $
class InfoRequest < ActiveRecord::Base
belongs_to :user
# validates_presence_of :user
# validates_numericality_of :user
validates_presence_of :title
end
|