Active directory security not present

Hi, I'm trying to update a project to add security with A/D. At present the project has not security enabled. When I try to add security configuration, only default option is shown. If I copy my security configuration from another project (same client, same A/D config values) to meta\app.json, and try to compile, this error appear:

C:\Program Files\Radzen\resources\node_modules@radzen\angular-generator\dist\templates\app.routes.ts.ejs:33
31| <%_ } %>
32| <%
if (security) { _%>

33| <%_ if (!page.access.includes('Everybody')) { %>
34| canActivate: [AuthGuard],
35| <%
} _%>
36| data: {

Cannot read property 'includes' of undefined

How I must to proceed to resolve this issue?

Thanks in advance,

Hi @Carlos_Carminati,

Active Directory type of security is still available for all Angular projects, not sure why is not listed for your application.

Please zip and send us your application meta folder to check locally what's going on.

Best Regards,
Vladimir

Hi, I sent you zip file by email.

In the middle time I added security entry in app.json and seeing json files of pages I noted that some pages hasn't "access" entry. I filled with
"access": [
"Everybody"
],

and copied Login and Unauhorized pages from another project, adding to pages list in app.json.

Now is running fine.

Regards