-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Epik/hs 16 send email refractor handle submit function (#183)
* fix: HS-18 refractor code * Update gulpfile.js * Automated Gulp build changes * updated babel * Update babel.config.json * Automated Gulp build changes * gulpfile update * Update gulpfile.js * Update gulpfile.js * Update gulpfile.js * Update babel.config.json * Update gulpfile.js * Automated Gulp build changes * gulp update * Automated Gulp build changes * Update gulpfile.js * uglify-js * gulpfile * update gulpfile * hs-18 refractor code * gulpfile * HS-19 refractor and modularize handleSubmit function * Automated Gulp build changes * HS-18 refractor code of send_email.js and modules * Automated Gulp build changes * HS-17 CSFR protection * Automated Gulp build changes * HS-17 csfr protection * Update .deepsource.toml * deepsource * Update php * Rename ogmeta to ogmeta.php * Update .deepsource.toml * HS-25 Security audit * Automated Gulp build changes * Update send_email.php * HS-25 security patch * Automated Gulp build changes * [HS-16/HS-25]fix: security update * Automated Gulp build changes * [HS-16] run gulp * Automated Gulp build changes * [HS-16/HS-18/HS-19/HS-20] Poprawa obsługi animacji i walidacji danych * Automated Gulp build changes * Babel for Jest * jest setup * Automated Gulp build changes --------- Co-authored-by: GitHub Action <action@github.com>
- Loading branch information
1 parent
a755b65
commit 45e1484
Showing
58 changed files
with
3,200 additions
and
4,081 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
node.DMP | ||
node_modules/ | ||
generate-token.php | ||
__tests__/ | ||
|
||
config.* |
Binary file not shown.
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,23 @@ | ||
{ | ||
"Version": 1, | ||
"WorkspaceRootPath": "D:\\Hd serwis\\", | ||
"Documents": [], | ||
"DocumentGroupContainers": [ | ||
{ | ||
"Orientation": 0, | ||
"VerticalTabListWidth": 256, | ||
"DocumentGroups": [ | ||
{ | ||
"DockedWidth": 200, | ||
"SelectedChildIndex": -1, | ||
"Children": [ | ||
{ | ||
"$type": "Bookmark", | ||
"Name": "ST:0:0:{aa2115a1-9712-457b-9047-dbb71ca2cdd2}" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
presets: [['@babel/preset-env', {targets: {node: 'current'}}]], | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" ?> | ||
<!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd"> | ||
<coverage lines-valid="0" lines-covered="0" line-rate="NaN" branches-valid="0" branches-covered="0" branch-rate="NaN" timestamp="1730062279353" complexity="0" version="0.1"> | ||
<sources> | ||
<source>D:\Hd serwis</source> | ||
</sources> | ||
<packages> | ||
</packages> | ||
</coverage> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import '@testing-library/jest-dom/extend-expect'; |
Oops, something went wrong.