Files
Facilitor/APPL/API2/api_authorizationgroups.asp
Jos Groot Lipman 87a2abd47e FSN#41668 SCIM 2e aanzet
svn path=/Website/trunk/; revision=35240
2017-09-07 12:55:46 +00:00

26 lines
858 B
Plaintext

<%@ language = "JavaScript" %>
<% /*
$Revision$
$Id$
File: api_authorizationgroups.asp
Description: ALG_GEBOUW API
Parameters:
Context: Door een remote systeem (geen persoon) om info uit FACILITOR te halen aan te roepen
Notes: Eigen bestand zodat we internal: true kunnen meegeven
*/
DOCTYPE_Disable = true;
ANONYMOUS_Allowed = 1; // Eigenlijk niet waar. We regelen echter alles zelf
THIS_FILE = "appl/api/api_authorizationgroups.asp";
%>
<!-- #include file="../Shared/common.inc" -->
<!-- #include file="./api2_rest.inc" -->
<!-- #include file="../Shared/json2.js" -->
<!-- #include file="./model_fac_groep.inc" -->
<%
var groep = new model_fac_groep(null, { internal: true }); // internal zodat PUT/POST/DELETE ook kunnen
api2_rest.process(groep);
%>