all method

BmobACL all({
  1. bool read = false,
  2. bool write = false,
})

设置全部人及其权限权限

Implementation

BmobACL all({bool read = false, bool write = false}) {
  if (read || write) {
    _acl['*'] = _createCAL(read, write);
  } else {
    _acl.remove('*');
  }
  return this;
}