mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-21 17:36:54 +01:00
add download contribution link
This commit is contained in:
parent
3eb46aadd1
commit
f37a85b9ea
@ -2,6 +2,7 @@ DISABLE_S3=false
|
|||||||
AWS_ACCESS_KEY_ID=
|
AWS_ACCESS_KEY_ID=
|
||||||
AWS_SECRET_ACCESS_KEY=
|
AWS_SECRET_ACCESS_KEY=
|
||||||
AWS_S3_BUCKET=
|
AWS_S3_BUCKET=
|
||||||
|
AWS_CONTRIBUTION_URL=
|
||||||
|
|
||||||
MYSQL_USER=
|
MYSQL_USER=
|
||||||
MYSQL_PASSWORD=
|
MYSQL_PASSWORD=
|
||||||
|
1
assets/img/icons/save.svg
Normal file
1
assets/img/icons/save.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18"><path fill="#94FEBF" fill-rule="evenodd" d="M17 18H1a1 1 0 0 1-1-1v-4a1 1 0 0 1 2 0v3h14v-3a1 1 0 0 1 2 0v4a1 1 0 0 1-1 1zm-7.134-6.332a1.08 1.08 0 0 1-.78.315C9.056 11.985 9.03 12 9 12c-.03 0-.056-.015-.086-.017a1.08 1.08 0 0 1-.78-.315L4.298 7.833a1.086 1.086 0 0 1 1.534-1.535L8 8.466V1a1 1 0 0 1 2 0v7.466l2.167-2.168a1.087 1.087 0 0 1 1.535 0 1.087 1.087 0 0 1 0 1.535l-3.836 3.835z"/></svg>
|
After Width: | Height: | Size: 460 B |
@ -27,6 +27,10 @@
|
|||||||
&-link {
|
&-link {
|
||||||
background-image: url('../img/icons/link.svg');
|
background-image: url('../img/icons/link.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-save {
|
||||||
|
background-image: url('../img/icons/save.svg');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.contribution-hash {
|
.contribution-hash {
|
||||||
|
@ -125,6 +125,7 @@ module.exports = {
|
|||||||
host: '0.0.0.0' // default: localhost
|
host: '0.0.0.0' // default: localhost
|
||||||
},
|
},
|
||||||
env: {
|
env: {
|
||||||
hashtag: process.env.TWITTER_HASHTAG
|
hashtag: process.env.TWITTER_HASHTAG,
|
||||||
|
downloadUrl: process.env.AWS_CONTRIBUTION_URL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -66,6 +66,12 @@
|
|||||||
<span class="icon icon-link"></span>
|
<span class="icon icon-link"></span>
|
||||||
</a>
|
</a>
|
||||||
</b-table-column>
|
</b-table-column>
|
||||||
|
|
||||||
|
<b-table-column>
|
||||||
|
<a :href="`${downloadUrl}_${props.row.id}`" class="button is-icon" download>
|
||||||
|
<span class="icon icon-save"></span>
|
||||||
|
</a>
|
||||||
|
</b-table-column>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template slot="empty">
|
<template slot="empty">
|
||||||
@ -130,7 +136,8 @@ export default {
|
|||||||
// }
|
// }
|
||||||
// ],
|
// ],
|
||||||
rowsPerPage: 10,
|
rowsPerPage: 10,
|
||||||
contributionSearch: ''
|
contributionSearch: '',
|
||||||
|
downloadUrl: process.env.downloadUrl
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
Loading…
Reference in New Issue
Block a user