Skip to content

Commit

Permalink
feat(token): add tokens table for confirmations
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed May 18, 2024
1 parent 26ca74c commit 5aae499
Show file tree
Hide file tree
Showing 34 changed files with 474 additions and 546 deletions.
128 changes: 64 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
"#tests": "./tests/index.js"
},
"dependencies": {
"@athenna/artisan": "^4.43.0",
"@athenna/common": "^4.42.0",
"@athenna/artisan": "^4.44.0",
"@athenna/common": "^4.43.0",
"@athenna/config": "^4.22.0",
"@athenna/core": "^4.39.0",
"@athenna/database": "^4.55.0",
"@athenna/http": "^4.35.0",
"@athenna/ioc": "^4.21.0",
"@athenna/logger": "^4.22.0",
"@athenna/mail": "^4.19.0",
"@athenna/queue": "^4.6.0",
"@athenna/validator": "^4.3.0",
"@athenna/view": "^4.23.0",
"@athenna/core": "^4.41.0",
"@athenna/database": "^4.56.0",
"@athenna/http": "^4.36.0",
"@athenna/ioc": "^4.22.0",
"@athenna/logger": "^4.23.0",
"@athenna/mail": "^4.21.0",
"@athenna/queue": "^4.7.0",
"@athenna/validator": "^4.4.0",
"@athenna/view": "^4.24.0",
"@fastify/cors": "^8.5.0",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^8.1.1",
Expand All @@ -50,8 +50,8 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@athenna/test": "^4.24.0",
"@athenna/tsconfig": "^4.14.0",
"@athenna/test": "^4.26.0",
"@athenna/tsconfig": "^4.16.0",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^7.9.0",
Expand Down
60 changes: 60 additions & 0 deletions public/css/mail.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
body {
font-family: '-apple-system', 'BlinkMacSystemFont', 'Helvetica', 'Arial', 'sans-serif', 'apple color emoji';
margin: 0;
padding: 0;
background-color: #252529;
color: #e3e3e3;
text-align: center;
}

.header {
background-color: #1d1e25;
padding: 20px;
}

.header h1 {
margin: 0;
font-size: 30px;
}

.activation {
padding: 10px 100px;
}

.activation p {
margin: 0;
font-size: 20px;
margin-top: 10px;
margin-bottom: 30px;
}

.help {
padding: 10px 200px;
}

.help p {
margin: 0;
font-size: 16px;
margin-top: 10px;
margin-bottom: 30px;
}

a {
color: #ffff92;
}

a.button {
padding: 10px 24px;
border: 1px;
font-size: 20px;
border-radius: 3px;
color: #e3e3e3;
font-weight: 500;
background-color: #715bf6;
text-decoration: none;
}

.minerva-img {
max-width: 200px;
margin-top: 20px;
}
Binary file added public/img/favicons/favicon.ico
Binary file not shown.
Binary file added public/img/logos/minerva.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/config/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default {
*/

helmet: {
enabled: true,
enabled: false,
global: true
},

Expand Down
4 changes: 3 additions & 1 deletion src/config/view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ export default {
|
*/

components: {},
components: {
mail: Path.views('components/mail.edge')
},

/*
|--------------------------------------------------------------------------
Expand Down
Loading

0 comments on commit 5aae499

Please sign in to comment.