This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2011-02-01 02:47:25 +00:00
|
|
|
class UserRoleModel < UserAttributeModel
|
|
|
|
|
2011-11-18 08:43:14 +00:00
|
|
|
# Get an user_role_model from key
|
|
|
|
def self.get_role_model_from_key(key)
|
|
|
|
self.first(:conditions => {:key => key})
|
|
|
|
end
|
|
|
|
|
2011-02-01 02:47:25 +00:00
|
|
|
end
|