-
Notifications
You must be signed in to change notification settings - Fork 1
#29 Get Technologies #118
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
#29 Get Technologies #118
Conversation
scripts/populate-keys.sh
Outdated
@@ -4,3 +4,5 @@ | |||
echo 'export const AUTHORITY = "'$AUTHORITY'";' >> src/environments/keys.ts | |||
echo 'export const CLIENT_ID = "'$CLIENT_ID'";' >> src/environments/keys.ts | |||
echo 'export const SCOPES = ["'$SCOPES'"];' >> src/environments/keys.ts | |||
echo 'export const STACK_EXCHANGE_ID = ["'$STACK_EXCHANGE_ID'"];' >> src/environments/keys.ts |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you need to remove the brackets and only have his line as:
echo 'export const STACK_EXCHANGE_ID = "'$STACK_EXCHANGE_ID'";' >> src/environments/keys.ts
scripts/populate-keys.sh
Outdated
@@ -4,3 +4,5 @@ | |||
echo 'export const AUTHORITY = "'$AUTHORITY'";' >> src/environments/keys.ts | |||
echo 'export const CLIENT_ID = "'$CLIENT_ID'";' >> src/environments/keys.ts | |||
echo 'export const SCOPES = ["'$SCOPES'"];' >> src/environments/keys.ts | |||
echo 'export const STACK_EXCHANGE_ID = ["'$STACK_EXCHANGE_ID'"];' >> src/environments/keys.ts | |||
echo 'export const STACK_EXCHANGE_ACCESS_TOKEN = ["'$STACK_EXCHANGE_ACCESS_TOKEN'"];' >> src/environments/keys.ts |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
@Input() entryToEdit; | ||
@Input() formType: string; | ||
@Output() saveEntry = new EventEmitter(); | ||
@ViewChild('closeModal') closeModal: ElementRef; | ||
entryForm: FormGroup; | ||
technologies: Technology; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
technologies or technology. it looks like technology since the type is not an array or any kind of collection.
@@ -4,7 +4,7 @@ export interface Entry { | |||
startDate: string; | |||
endDate: string; | |||
activity: string; | |||
technology: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
technologies
LOAD_TECHNOLOGY = '[Technology] LOAD_TECHNOLOGY', | ||
LOAD_TECHNOLOGY_SUCCESS = '[Technology] LOAD_TECHNOLOGY_SUCCESS', | ||
LOAD_TECHNOLOGY_FAIL = '[Technology] LOAD_TECHNOLOGY_FAIL', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think here we are not LOADING but FINDING so:
FIND_TECHNOLOGIES
FIND_TECHNOLOGIES_SUCESS
FIND_TECHNOLOGIES_FAIL
9f6d155
to
a69a911
Compare
Codecov Report
@@ Coverage Diff @@
## master #118 +/- ##
==========================================
+ Coverage 91.85% 92.90% +1.04%
==========================================
Files 43 47 +4
Lines 393 437 +44
Branches 22 26 +4
==========================================
+ Hits 361 406 +45
+ Misses 26 24 -2
- Partials 6 7 +1
Continue to review full report at Codecov.
|
a69a911
to
b9f1262
Compare
b9f1262
to
afc20cc
Compare
Issue #29