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.
|
class ObjectAuth < PrototypeAuth
|
|
|
|
belongs_to :obj_authable, polymorphic: true
|
|
# > - Something.find_with_auth(query)
|
|
# > - or Something.find(query).auth
|
|
def auth_obj
|
|
class_obj = eval(self.obj_authable_type)
|
|
class_obj.find self.obj_authable_id
|
|
end
|
|
|
|
end |