Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding role selection to executive application #122

Merged
merged 24 commits into from
Feb 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0caa4a8
migrate to angular 14
gideonoludeyi Oct 10, 2023
caf3966
migrate to @angular/material 14
gideonoludeyi Oct 10, 2023
e030414
upgrade ngx-markdown to match angular 14
gideonoludeyi Oct 10, 2023
a26b707
fix sass deprecation warning
gideonoludeyi Oct 10, 2023
523dc62
Merge pull request #116 from BrockCSC/upgrade-angular-14
gideonoludeyi Oct 10, 2023
5f9dadb
extract google form configs to environment.ts
gideonoludeyi Oct 11, 2023
372dc27
fix execApplicationForm.ids.currentYear entry
gideonoludeyi Oct 11, 2023
1245f3a
use mock google forms for non-prod environments
gideonoludeyi Oct 11, 2023
2a47cf7
fix: remove unused import
gideonoludeyi Oct 11, 2023
c1866f3
Merge pull request #117 from BrockCSC/externalize-config
gideonoludeyi Oct 12, 2023
4bfbada
Angular CLI update for packages - @angular/core@15, @angular/cli@15, …
gideonoludeyi Oct 12, 2023
b49f031
@angular-eslint/schematics migration - update-15-0-0
gideonoludeyi Oct 12, 2023
63ec661
@angular/cli migration - update-karma-main-file
gideonoludeyi Oct 12, 2023
1240069
@angular/cli migration - update-typescript-target
gideonoludeyi Oct 12, 2023
f63c4c5
upgrade ngx-markdown to 15
gideonoludeyi Oct 12, 2023
2b9053f
Angular CLI update for packages - @angular/material@15
gideonoludeyi Oct 12, 2023
9cd579b
@angular/material migration - migration-v15
gideonoludeyi Oct 12, 2023
98e2f37
Merge pull request #118 from BrockCSC/upgrade-angular-15
gideonoludeyi Oct 25, 2023
872064c
Added role field to Executive Application Sign Up Form
AlaqmarG Feb 16, 2024
28998d4
add execApplicationForm.ids.role to environment.ts
gideonoludeyi Feb 16, 2024
4f8caac
add execApplicationForm.ids.role to environment.prod.ts
gideonoludeyi Feb 16, 2024
c0b6d7b
Merge pull request #120 from BrockCSC/exec-application-role
AlaqmarG Feb 16, 2024
c1b182f
change Moderator to Discord Moderator
gideonoludeyi Feb 16, 2024
61fa3a3
Merge pull request #121 from BrockCSC/exec-application-role
gideonoludeyi Feb 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,22 @@
}
}
},
"defaultProject": "csc",
"schematics": {
"@schematics/angular:component": {
"prefix": "csc",
"style": "scss"
},
"@schematics/angular:directive": {
"prefix": "csc"
},
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
},
"cli": {
"analytics": false
}
}
6 changes: 1 addition & 5 deletions e2e/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
{
"files": ["*.ts"],
"parserOptions": {
"project": [
"e2e/tsconfig.app.json",
"e2e/tsconfig.spec.json",
"e2e/e2e/tsconfig.json"
],
"project": ["e2e/tsconfig.e2e.json"],
"createDefaultProgram": true
},
"rules": {
Expand Down
Loading