You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.4 KiB
74 lines
1.4 KiB
class LocationPolicy |
|
attr_reader :user, :location |
|
|
|
def initialize(user, location) |
|
@user = user |
|
@location = location |
|
end |
|
|
|
def index? |
|
true |
|
end |
|
|
|
def create? |
|
return true if user.support? |
|
|
|
if location == Location |
|
user.data_coordinator? |
|
else |
|
user.data_coordinator? && user.organisation == scheme&.owning_organisation |
|
end |
|
end |
|
|
|
def update? |
|
return true if user.support? |
|
|
|
user.data_coordinator? && scheme&.owning_organisation == user.organisation |
|
end |
|
|
|
%w[ |
|
update_postcode? |
|
update_local_authority? |
|
update_name? |
|
update_units? |
|
update_type_of_unit? |
|
update_mobility_standards? |
|
update_availability? |
|
new_deactivation? |
|
deactivate_confirm? |
|
deactivate? |
|
new_reactivation? |
|
reactivate? |
|
postcode? |
|
local_authority? |
|
name? |
|
units? |
|
type_of_unit? |
|
mobility_standards? |
|
availability? |
|
confirm? |
|
].each do |method_name| |
|
define_method method_name do |
|
return true if user.support? |
|
|
|
user.data_coordinator? && scheme&.owning_organisation == user.organisation |
|
end |
|
end |
|
|
|
%w[ |
|
show? |
|
check_answers? |
|
].each do |method_name| |
|
define_method method_name do |
|
return true if user.support? |
|
|
|
user.organisation.parent_organisations.exists?(scheme&.owning_organisation_id) || scheme&.owning_organisation == user.organisation |
|
end |
|
end |
|
|
|
private |
|
|
|
def scheme |
|
location.scheme |
|
end |
|
end
|
|
|