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.
|
module OrbitControllerLib
|
|
module DivisionForDisable
|
|
def get_disable_object_by_user(object_class)
|
|
if is_admin? or is_manager?
|
|
object_class.admin_manager_all
|
|
else
|
|
object_class.all
|
|
end
|
|
end
|
|
end
|
|
end
|