123456789101112131415161718192021222324252627282930313233343536373839 |
- # Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
- class Organization
- module Permission
- =begin
- check if user has access to user
- user = Organization.find(123)
- result = organization.permission(type: 'rw', current_user: User.find(123))
- returns
- result = true|false
- =end
- def permission (data)
- # check customer
- if data[:current_user].role?('Customer')
- # access ok if its own organization
- return false if data[:type] != 'ro'
- return false if !data[:current_user].organization_id
- return true if id == data[:current_user].organization_id
- # no access
- return false
- end
- # check agent
- return true if data[:current_user].role?(Z_ROLENAME_ADMIN)
- return true if data[:current_user].role?('Agent')
- false
- end
- end
- end
|