You are here

function file_service_save_access in Services 7

Same name and namespace in other branches
  1. 6.2 services/file_service/file_service.inc \file_service_save_access()

Check if the user has permission to save file information.

Will probably want to revisit this down the road to make it somewhat tougher, esp if we get to the point where we're saving actual files (see below.)

File

services/file_service/file_service.inc, line 37
@author Services Dev Team

Code

function file_service_save_access() {
  return user_access('save file information');
}