feat: Umgebungen hinzugefügt und konfiguriert
This commit is contained in:
parent
8cfe57b30b
commit
e86a9aaf29
@ -54,7 +54,13 @@
|
||||
"maximumError": "4kb"
|
||||
}
|
||||
],
|
||||
"outputHashing": "all"
|
||||
"outputHashing": "all",
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "src/environments/environment.ts",
|
||||
"with": "src/environments/environment.prod.ts"
|
||||
}
|
||||
]
|
||||
},
|
||||
"development": {
|
||||
"optimization": false,
|
||||
@ -106,4 +112,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
user_route: "user",
|
||||
group_route: "group",
|
||||
module_route: "module",
|
||||
module_of_user_route: "moduleOfUser",
|
||||
group_of_user_route: "groupOfUser",
|
||||
user_representation_route: "userRep",
|
||||
dir_group_route: "directory/Group?propName=samaccountname",
|
||||
dir_user_route: "directory/user",
|
||||
dir_route: "directory",
|
||||
login_route: "auth/login",
|
||||
logout_route: "auth/logout",
|
||||
login_check_route: "auth/check"
|
||||
};
|
||||
@ -0,0 +1,15 @@
|
||||
export const environment = {
|
||||
production: false,
|
||||
user_route: "user",
|
||||
group_route: "group",
|
||||
module_route: "module",
|
||||
module_of_user_route: "moduleOfUser",
|
||||
group_of_user_route: "groupOfUser",
|
||||
user_representation_route: "userRep",
|
||||
dir_group_route: "directory/Group?propName=samaccountname",
|
||||
dir_user_route: "directory/user",
|
||||
dir_route: "directory",
|
||||
login_route: "auth/login",
|
||||
logout_route: "auth/logout",
|
||||
login_check_route: "auth/check"
|
||||
};
|
||||
@ -4,10 +4,6 @@
|
||||
<meta charset="utf-8">
|
||||
<title>User Manager Portal</title>
|
||||
<base href="/">
|
||||
<user-manager-api href="/api/" user-route="user" group-route="group" module-route="module"
|
||||
module-of-user-route="moduleOfUser" group-of-user-route="groupOfUser" user-representation-route="userRep"
|
||||
dir-group-route="directory/Group?propName=samaccountname" dir-user-route="directory/user" dir-route="directory"
|
||||
login-route="auth/login" , logout-route="auth/logout" , login-check-route="auth/check" />
|
||||
<meta name="api-url" content="/api">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
@ -17,4 +13,4 @@
|
||||
<body class="mat-typography">
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
Loading…
x
Reference in New Issue
Block a user