You are not logged in.
It will be nice to add the checking of user rights to the TSQLRestServer.Batch method
procedure TSQLRestServer.Batch(Ctxt: TSQLRestServerURIContext);
...
if Ctxt.Table<>nil then begin
TableIndex := Model.GetTableIndexExisting(Ctxt.Table);
if not (TableIndex in Ctxt.Call.RestAccessRights^.DELETE) then // check User
begin
Ctxt.Error('', HTML_NOTALLOWED);
exit;
end;
...
Offline