Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

13 lines
360 B

module LogListHelper
def display_delete_logs?(current_user, search_term, filter_type)
if current_user.data_provider?
filter_selected?("assigned_to", "you", filter_type)
else
any_filter_selected?(filter_type) || search_term.present?
end
end
def in_organisations_tab?
controller.class.name.start_with? "Organisation"
end
end