forked from coralproject/talk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: improved auth features + performance * fix: auth check logic * fix: tests
- Loading branch information
Showing
18 changed files
with
244 additions
and
305 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
# excluded because we'll likely need to rebuild this. | ||
node_modules | ||
|
||
# static assets are rebuild in the docker container. | ||
dist | ||
|
||
# tests are not run in the docker container. | ||
__tests__ | ||
coverage | ||
|
||
# we won't use the .git folder in production. | ||
.git | ||
|
||
# hide the environment config. | ||
.env | ||
# don't include the dependancies | ||
node_modules | ||
|
||
# don't include logs. | ||
# don't include any logs | ||
npm-debug.log* | ||
|
||
# don't include any yarn files | ||
yarn-error.log | ||
yarn.lock | ||
|
||
# hide OS specific files. | ||
# don't include any OS/editor files | ||
.env | ||
.idea/ | ||
.vs | ||
.docz | ||
*.swp | ||
*.DS_STORE | ||
|
||
# hide generated files. | ||
# don't include any generated files | ||
dist | ||
*.css.d.ts | ||
__generated__ | ||
|
||
README.md.orig |
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,17 +1,23 @@ | ||
# don't include the dependancies | ||
node_modules | ||
dist | ||
.env | ||
|
||
# don't include any logs | ||
npm-debug.log* | ||
|
||
# don't include any yarn files | ||
yarn-error.log | ||
yarn.lock | ||
coverage | ||
|
||
# don't include any OS/editor files | ||
.env | ||
.idea/ | ||
.vs | ||
.docz | ||
*.swp | ||
*.DS_STORE | ||
|
||
# don't include any generated files | ||
dist | ||
*.css.d.ts | ||
__generated__ | ||
README.md.orig |
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
103 changes: 0 additions & 103 deletions
103
src/core/client/admin/containers/RedirectLoginContainer.tsx
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.