Updated path references to spec_helper
[merb_mart.git] / app / models / right.rb
bloba755572910c7a8eaccdf0ecbb5dabaa0e9df0b53
1 class Right
2   
3   include DataMapper::Resource
4   
5   property :id,         Fixnum, :serial => true
6   property :name,       String
7   property :controller, String
8   property :actions,    String
10   many_to_many :roles
12 end