Skip to content

Commit

Permalink
feat: add endpoint overview (#353)
Browse files Browse the repository at this point in the history
* feat: added endpoint search page

* feat: fix endpoint tests

* fix: manage deprecations

* feat: fix endpoint tests
  • Loading branch information
HenryT-CG authored Jan 17, 2025
1 parent 9a42d8f commit 06a80c0
Show file tree
Hide file tree
Showing 42 changed files with 2,195 additions and 5,497 deletions.
8 changes: 4 additions & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Copy of .gitignore AND removed "dist" directory

# compiled output
# dist
tmp
out-tsc
reports
Expand All @@ -16,18 +17,17 @@ speed-measure-plugin*.json
.idea
.project
.classpath
.c9
.history
.settings
.vscode
*.launch
*.sublime-workspace

# misc
.angular
.eslintcache
.husky/_
.sass-cache
.scannerwork
.husky/_
.gitlab*
connect.lock
typings
Expand Down
49 changes: 8 additions & 41 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
{
"files": ["*.ts", "*.js"],
"env": { "es6": true },
"globals": {
"__dirname": true
},
"globals": { "__dirname": true },
"parserOptions": {
"ecmaVersion": "latest",
"project": "**/tsconfig.json",
Expand All @@ -32,44 +30,19 @@
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:prettier/recommended",
"plugin:deprecation/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"semi": ["error", "never"],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"warn",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true
}
],
"@angular-eslint/directive-selector": ["error", { "type": "attribute", "prefix": "app", "style": "camelCase" }],
"@angular-eslint/component-selector": ["warn", { "type": "element", "prefix": "app", "style": "kebab-case" }],
"deprecation/deprecation": "warn",
"prettier/prettier": ["error", { "singleQuote": true }],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "none" }],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": [
"error",
{
"extendDefaults": true,
"types": {
"{}": false
}
}
],
"@typescript-eslint/ban-types": ["error", { "extendDefaults": true, "types": { "{}": false } }],
"@typescript-eslint/no-var-requires": 0
}
},
Expand All @@ -78,13 +51,7 @@
"excludedFiles": ["*inline-template-*.component.html"],
"extends": ["plugin:@angular-eslint/template/recommended", "plugin:prettier/recommended"],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"parser": "angular"
}
]
"prettier/prettier": ["error", { "singleQuote": true, "parser": "angular" }]
}
}
]
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ dist
tmp
out-tsc
reports
coverage

# dependencies
node_modules
Expand Down
2 changes: 2 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ app:
EDIT: Edit app
SEARCH: Search apps
VIEW: View app details
ENDPOINT:
SEARCH: Search endpoints
PRODUCT:
CREATE: Create product
DELETE: Delete product
Expand Down
Loading

0 comments on commit 06a80c0

Please sign in to comment.