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

Add support for rejection emails #678

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ jobs:
at: ~/project
- restore_cache:
keys:
- 'dependency-cache-{{ checksum "package-lock.json" }}'
- dependency-cache-
- run: 'npm i --no-shrinkwrap && npm run generate' # might want to use ci for some sort of really aggressive pre-deploy test
- 'dependency-cache-v1-{{ checksum "package-lock.json" }}'
- run: 'npm i && npm run generate' # might want to use ci for some sort of really aggressive pre-deploy test
- save_cache:
key: 'dependency-cache-{{ checksum "package-lock.json" }}'
key: 'dependency-cache-v1-{{ checksum "package-lock.json" }}'
paths:
- node_modules
- persist_to_workspace:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on: push
name: packtracker.io
jobs:
report:
name: report webpack stats
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: report webpack stats
uses: packtracker/[email protected]
env:
PT_PROJECT_TOKEN: ${{ secrets.PT_PROJECT_TOKEN }}
WEBPACK_CONFIG_PATH: ./config/webpack/production.js
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ A next-gen hackathon registration system.
### Login Page
![Login Page](./pics/vaken1.png)

- supports Github, Google, and Microsoft SSO logins
- supports GitHub, Google, and Microsoft SSO logins

### Detailed Hacker Management for Organizers
![Organizer Page](./pics/vaken-org.png)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ exports[`Test Sidebar Sidebar renders correctly 1`] = `
<h1
className="sc-fzokOt hNxYVR"
>
VandyHacks VI
VandyHacks: Summer Edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion __snapshots__/client/routes/dashboard/Frame.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ exports[`Test Frame Frame renders correctly 1`] = `
<h1
className="sc-fzokOt hNxYVR"
>
VandyHacks VI
VandyHacks: Summer Edition
</h1>
</div>
</div>
Expand Down
40 changes: 16 additions & 24 deletions __snapshots__/client/routes/login/Login.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ exports[`Login renders properly 1`] = `
className="sc-fznZeY gnTxhM"
>
<div
className="sc-AxjAm sc-AxirZ sc-AxhUy sc-fzokOt gHrEpW"
className="sc-AxjAm sc-AxirZ sc-AxhUy sc-fzqBZW bBqVxb"
height="25"
width="27rem"
>
<h1
className="sc-fzqBZW dSWhvV"
className="sc-fzqNJr bMSQyn"
color="#3f3356"
>
VandyHacks VI
VandyHacks: Summer Edition
</h1>
<a
href="/api/auth/github"
href="/api/auth/google"
style={
Object {
"textDecoration": "none",
Expand All @@ -32,20 +32,20 @@ exports[`Login renders properly 1`] = `
width="min-content"
>
<img
alt="GitHub logo"
alt="Google logo"
className="sc-fzoLsD egDCJJ"
src="IconMock"
/>
</div>
<div
className="sc-AxmLO cmpEQv"
>
Sign in with GitHub
Sign in with Google
</div>
</button>
</a>
<a
href="/api/auth/google"
href="/api/auth/github"
style={
Object {
"textDecoration": "none",
Expand All @@ -61,44 +61,36 @@ exports[`Login renders properly 1`] = `
width="min-content"
>
<img
alt="Google logo"
alt="GitHub logo"
className="sc-fzoLsD egDCJJ"
src="IconMock"
/>
</div>
<div
className="sc-AxmLO cmpEQv"
>
Sign in with Google
Sign in with GitHub
</div>
</button>
</a>
<a
href="/api/auth/microsoft"
href="https://summer.vandyhacks.org"
rel="noopener noreferrer"
style={
Object {
"textDecoration": "none",
}
}
target="_blank"
>
<button
className="sc-fzplWN cAaXyv"
className="sc-fzplWN sc-fzokOt jvWrPW"
>
<div
className="sc-AxjAm sc-AxirZ sc-AxiKw cJZTej"
height="min-content"
width="min-content"
>
<img
alt="Microsoft logo"
className="sc-fzoLsD egDCJJ"
src="IconMock"
/>
</div>
<div
className="sc-AxmLO cmpEQv"
className="sc-AxmLO iNbFiF"
color="#3f3356"
>
Sign in with Microsoft
Learn more
</div>
</button>
</a>
Expand Down
2 changes: 1 addition & 1 deletion __snapshots__/client/routes/profile/Profile.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exports[`Test Profile renders correctly 1`] = `
className="sc-fzqBkg dovGdd"
>
<div
className="sc-fzplWN cKBqTr"
className="sc-fzpans QsMny"
>
<div
className="bounce1"
Expand Down
Loading