-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #710 from Ignitus/develop
Master > Develop.
- Loading branch information
Showing
77 changed files
with
1,723 additions
and
808 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/ignitus-Authentication/ignitus-CommonAuthenticationInterface/constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export const studentAuth: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/studentAuthentication.svg'; | ||
export const professorAuth: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/professorAuthentication.svg'; | ||
export const studentAuthentication: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/studentAuthentication.svg'; | ||
export const professorAuthentication: string = 'https://storage.googleapis.com/ignitus_assets/ig-assets/professorAuthentication.svg'; |
1 change: 0 additions & 1 deletion
1
src/ignitus-Authentication/ignitus-StudentLogin/Components/Login.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
src/ignitus-Authentication/ignitus-StudentLogin/Components/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/* eslint-disable import/prefer-default-export */ | ||
export { default as Login } from './Login'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
3 changes: 0 additions & 3 deletions
3
src/ignitus-Authentication/ignitus-StudentSignUpFlow/ignitus-StudentSignUp/actionTypes.js
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
src/ignitus-Authentication/ignitus-StudentSignUpFlow/ignitus-StudentSignUp/actionTypes.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export const SIGN_UP_REQUEST: string = 'SIGN_UP_REQUEST'; | ||
export const SIGN_UP_RESPONSE: string = 'SIGN_UP_RESPONSE'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
src/ignitus-Authentication/ignitus-StudentSignUpFlow/ignitus-StudentSignUp/constants.js
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
src/ignitus-Authentication/ignitus-StudentSignUpFlow/ignitus-StudentSignUp/constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* eslint-disable import/prefer-default-export */ | ||
export const NAME = 'studentSignUpReducer'; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 0 additions & 14 deletions
14
src/ignitus-Authentication/ignitus-StudentSignUpFlow/ignitus-StudentSignUp/selectors.js
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
src/ignitus-Authentication/ignitus-StudentSignUpFlow/ignitus-StudentSignUp/selectors.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import {createSelector} from 'reselect'; | ||
import {isObject} from '../../../ignitus-Shared/ignitus-Utilities/HelperFunctions/lodashHelpers'; | ||
|
||
export const selectStudentState = state => state.studentSignUpReducer; | ||
|
||
export const makeSelectStudentData = () => | ||
createSelector( | ||
selectStudentState, | ||
substate => { | ||
if (isObject(substate)) { | ||
return substate; | ||
} | ||
return []; | ||
}, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
src/ignitus-Careers/ignitus-JobConfirmation/Components/JobConfirmation.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
src/ignitus-Dashboard/ignitus-DashboardHeader/Components/dashBoardHeader.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 37 additions & 28 deletions
65
src/ignitus-HomePage/ignitus-Testimonial/Components/Testimonial.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.