1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-09-13 14:09:04 -04:00
BikeShed-1/app/models/user_role.rb
2012-12-29 16:22:24 -05:00

12 lines
137 B
Ruby

class UserRole < ActiveRecord::Base
attr_accessible :role
has_many :users
self.per_page = 15
def to_s
self.role
end
end