Skip to content

Commit

Permalink
Merge pull request #21 from camptocamp/GSGGR-156-frontend-auth
Browse files Browse the repository at this point in the history
GSGGR-156 Add OIDC authentication flow for the geoshop frontend
  • Loading branch information
lanseg authored Oct 7, 2024
2 parents b13e043 + cde43ae commit 56366a3
Show file tree
Hide file tree
Showing 22 changed files with 2,600 additions and 243 deletions.
30 changes: 24 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@
"src/theme.scss",
"src/styles.scss"
],
"scripts": [
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
Expand Down Expand Up @@ -89,8 +88,15 @@
"vendorChunk": true,
"buildOptimizer": false
},
"en": {
"localize": [
"en"
]
},
"de": {
"localize": ["de"]
"localize": [
"de"
]
}
},
"defaultConfiguration": "development"
Expand All @@ -104,14 +110,14 @@
"production": {
"browserTarget": "front:build:production"
},
"development":{
"development": {
"browserTarget": "front:build:development"
},
"de": {
"browserTarget": "front:build:development,de"
}
},
"defaultConfiguration": "development"
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
Expand Down Expand Up @@ -148,11 +154,23 @@
"devServerTarget": "front:serve:production"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}
},
"cli": {
"analytics": false
"analytics": false,
"schematicCollections": [
"@angular-eslint/schematics"
]
}
}
Loading

0 comments on commit 56366a3

Please sign in to comment.