Skip to content

Commit 19a3f0f

Browse files
Add password reset functionality to web interface
1 parent 532b338 commit 19a3f0f

File tree

675 files changed

+70518
-70518
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

675 files changed

+70518
-70518
lines changed

.browserslistrc

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2-
# For additional information regarding the format and rule options, please see:
3-
# https://github.com/browserslist/browserslist#queries
4-
5-
# For the full list of supported browsers by the Angular framework, please see:
6-
# https://angular.io/guide/browser-support
7-
8-
# You can see what browsers were selected by your queries by running:
9-
# npx browserslist
10-
11-
last 2 Chrome versions
12-
last 1 Firefox version
13-
last 2 Edge major versions
14-
last 2 Safari major versions
15-
last 2 iOS major versions
16-
Firefox ESR
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# For the full list of supported browsers by the Angular framework, please see:
6+
# https://angular.io/guide/browser-support
7+
8+
# You can see what browsers were selected by your queries by running:
9+
# npx browserslist
10+
11+
last 2 Chrome versions
12+
last 1 Firefox version
13+
last 2 Edge major versions
14+
last 2 Safari major versions
15+
last 2 iOS major versions
16+
Firefox ESR

.dockerignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Dockerfile
2-
.git
3-
build
4-
dist
5-
node_modules
6-
vendor
1+
Dockerfile
2+
.git
3+
build
4+
dist
5+
node_modules
6+
vendor

.editorconfig

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# http://editorconfig.org
2-
root = true
3-
4-
[*]
5-
charset = utf-8
6-
indent_style = space
7-
indent_size = 2
8-
insert_final_newline = true
9-
trim_trailing_whitespace = true
10-
11-
12-
[*.md]
13-
max_line_length = 0
14-
trim_trailing_whitespace = false
15-
16-
# Indentation override
17-
#[lib/**.js]
18-
#[{package.json,.travis.yml}]
19-
#[**/**.js]
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
12+
[*.md]
13+
max_line_length = 0
14+
trim_trailing_whitespace = false
15+
16+
# Indentation override
17+
#[lib/**.js]
18+
#[{package.json,.travis.yml}]
19+
#[**/**.js]

.eslintignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
build/
2-
coverage/
3-
dist/
4-
docs/
1+
build/
2+
coverage/
3+
dist/
4+
docs/

.eslintrc.json

Lines changed: 91 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,91 @@
1-
{
2-
"root": true,
3-
"overrides": [
4-
{
5-
"files": ["*.ts"],
6-
"parserOptions": {
7-
"project": ["tsconfig.*?.json"],
8-
"createDefaultProgram": true
9-
},
10-
"plugins": ["@typescript-eslint"],
11-
"extends": [
12-
"plugin:@angular-eslint/recommended",
13-
"plugin:@typescript-eslint/recommended",
14-
"plugin:prettier/recommended"
15-
],
16-
"env": {
17-
"browser": true,
18-
"jasmine": true
19-
},
20-
"rules": {
21-
"@typescript-eslint/no-unused-vars": [
22-
"warn",
23-
{
24-
"args": "all",
25-
"argsIgnorePattern": "^_",
26-
"caughtErrors": "all",
27-
"caughtErrorsIgnorePattern": "^_",
28-
"destructuredArrayIgnorePattern": "^_",
29-
"varsIgnorePattern": "^_",
30-
"ignoreRestSiblings": true
31-
}
32-
],
33-
"@angular-eslint/no-empty-lifecycle-method": "warn",
34-
"@angular-eslint/component-class-suffix": "warn",
35-
"@angular-eslint/no-output-on-prefix": "warn",
36-
"@typescript-eslint/no-inferrable-types": "off",
37-
"@angular-eslint/directive-selector": [
38-
"warn",
39-
{
40-
"type": "attribute",
41-
"prefix": "f",
42-
"style": "camelCase"
43-
}
44-
],
45-
"@angular-eslint/component-selector": [
46-
"warn",
47-
{
48-
"type": "element",
49-
"prefix": "f",
50-
"style": "kebab-case"
51-
}
52-
],
53-
"@typescript-eslint/ban-types": "warn",
54-
"@typescript-eslint/no-empty-function": "warn",
55-
"@typescript-eslint/no-inferrable-types": "off",
56-
"@typescript-eslint/no-this-alias": "warn",
57-
"no-dupe-class-members": "warn",
58-
"no-prototype-builtins": "warn",
59-
"no-unused-vars": "off",
60-
"no-useless-escape": "warn",
61-
"no-var": "warn",
62-
"quotes": [
63-
"warn",
64-
"single",
65-
{
66-
"allowTemplateLiterals": true
67-
}
68-
],
69-
"prefer-const": "warn",
70-
"prettier/prettier": "warn"
71-
}
72-
},
73-
{
74-
"files": ["*.component.html"],
75-
"extends": ["plugin:@angular-eslint/template/recommended", "plugin:prettier/recommended"],
76-
"rules": {
77-
"max-len": [
78-
"warn",
79-
{
80-
"code": 140
81-
}
82-
],
83-
"prettier/prettier": "warn"
84-
}
85-
},
86-
{
87-
"files": ["*.component.ts"],
88-
"extends": ["plugin:@angular-eslint/template/process-inline-templates"]
89-
}
90-
]
91-
}
1+
{
2+
"root": true,
3+
"overrides": [
4+
{
5+
"files": ["*.ts"],
6+
"parserOptions": {
7+
"project": ["tsconfig.*?.json"],
8+
"createDefaultProgram": true
9+
},
10+
"plugins": ["@typescript-eslint"],
11+
"extends": [
12+
"plugin:@angular-eslint/recommended",
13+
"plugin:@typescript-eslint/recommended",
14+
"plugin:prettier/recommended"
15+
],
16+
"env": {
17+
"browser": true,
18+
"jasmine": true
19+
},
20+
"rules": {
21+
"@typescript-eslint/no-unused-vars": [
22+
"warn",
23+
{
24+
"args": "all",
25+
"argsIgnorePattern": "^_",
26+
"caughtErrors": "all",
27+
"caughtErrorsIgnorePattern": "^_",
28+
"destructuredArrayIgnorePattern": "^_",
29+
"varsIgnorePattern": "^_",
30+
"ignoreRestSiblings": true
31+
}
32+
],
33+
"@angular-eslint/no-empty-lifecycle-method": "warn",
34+
"@angular-eslint/component-class-suffix": "warn",
35+
"@angular-eslint/no-output-on-prefix": "warn",
36+
"@typescript-eslint/no-inferrable-types": "off",
37+
"@angular-eslint/directive-selector": [
38+
"warn",
39+
{
40+
"type": "attribute",
41+
"prefix": "f",
42+
"style": "camelCase"
43+
}
44+
],
45+
"@angular-eslint/component-selector": [
46+
"warn",
47+
{
48+
"type": "element",
49+
"prefix": "f",
50+
"style": "kebab-case"
51+
}
52+
],
53+
"@typescript-eslint/ban-types": "warn",
54+
"@typescript-eslint/no-empty-function": "warn",
55+
"@typescript-eslint/no-inferrable-types": "off",
56+
"@typescript-eslint/no-this-alias": "warn",
57+
"no-dupe-class-members": "warn",
58+
"no-prototype-builtins": "warn",
59+
"no-unused-vars": "off",
60+
"no-useless-escape": "warn",
61+
"no-var": "warn",
62+
"quotes": [
63+
"warn",
64+
"single",
65+
{
66+
"allowTemplateLiterals": true
67+
}
68+
],
69+
"prefer-const": "warn",
70+
"prettier/prettier": "warn"
71+
}
72+
},
73+
{
74+
"files": ["*.component.html"],
75+
"extends": ["plugin:@angular-eslint/template/recommended", "plugin:prettier/recommended"],
76+
"rules": {
77+
"max-len": [
78+
"warn",
79+
{
80+
"code": 140
81+
}
82+
],
83+
"prettier/prettier": "warn"
84+
}
85+
},
86+
{
87+
"files": ["*.component.ts"],
88+
"extends": ["plugin:@angular-eslint/template/process-inline-templates"]
89+
}
90+
]
91+
}

.github/dependabot.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
6-
version: 2
7-
updates:
8-
- package-ecosystem: "npm" # See documentation for possible values
9-
directory: "/" # Location of package manifests
10-
schedule:
11-
interval: "daily"
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "npm" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "daily"

0 commit comments

Comments
 (0)