mirror of
https://github.com/bellingcat/auto-archiver-setup-tool.git
synced 2026-06-12 05:28:36 +03:00
Add warning message
This commit is contained in:
@@ -2,22 +2,20 @@
|
||||
<v-container>
|
||||
<v-row>
|
||||
<v-col>
|
||||
<v-card>
|
||||
<v-card-title>Create a new auto archiver sheet</v-card-title>
|
||||
<v-card style="margin-bottom: 1em">
|
||||
<v-card-text>
|
||||
<v-alert color="#f2d97c" light icon="mdi-alert">
|
||||
This is a pre-release prototype demo service provided on a
|
||||
best-effort basis. Do not use for mission critical or sensitive
|
||||
date.
|
||||
</v-alert>
|
||||
<p>
|
||||
This tool will configure a Google Sheet on your account for use
|
||||
with Bellingcat's auto archiver. This sheet will be shared with
|
||||
the service account necessary for Bellingcat's archiving server.
|
||||
You can modify and share the Google Sheet subsequently, but do not
|
||||
edit the column names in the header row or remove the service
|
||||
account from the shared users.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Links to online sources added to the "Link" column will be
|
||||
archived every 15 minutes, or can be triggered manually below. For
|
||||
more information about the auto archiver and how to use it, see
|
||||
This tool will configure a Google Sheet on your Google account for
|
||||
use with
|
||||
<a href="https://github.com/bellingcat/auto-archiver"
|
||||
>Bellingcat's Auto Archiver</a
|
||||
>. For more information about the Auto Archiver and how to use it,
|
||||
see
|
||||
<a href="https://github.com/bellingcat/auto-archiver"
|
||||
>our Github repository</a
|
||||
>
|
||||
@@ -27,14 +25,43 @@
|
||||
>associated article</a
|
||||
>.
|
||||
</p>
|
||||
<ol style="margin-bottom: 1em">
|
||||
<li>Press "create" to create a new archiving Google Sheet</li>
|
||||
<li>
|
||||
Add links to the "Link" column. They will be archived every 15
|
||||
minutes, or you can trigger a manual archive below
|
||||
</li>
|
||||
<li>
|
||||
This sheet will be shared with the service account necessary for
|
||||
Bellingcat's archiving server
|
||||
</li>
|
||||
<li>
|
||||
You can modify and share the Google Sheet subsequently, but do
|
||||
not edit the column names in the header row or remove the
|
||||
service account from the shared users
|
||||
</li>
|
||||
</ol>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
<v-card>
|
||||
<v-card-title>Create a new auto archiver sheet</v-card-title>
|
||||
<v-card-text>
|
||||
<v-text-field
|
||||
label="Document name"
|
||||
v-model="docName"
|
||||
v-if="user"
|
||||
></v-text-field>
|
||||
<v-btn
|
||||
@click="$store.dispatch('add', { name: docName })"
|
||||
:loading="$store.state.loading"
|
||||
>Add</v-btn
|
||||
v-if="user"
|
||||
>Create</v-btn
|
||||
>
|
||||
<v-alert v-if="!user" color="#f2d97c" light icon="mdi-alert"
|
||||
><a href="#" @click="$store.dispatch('signin')"
|
||||
>Sign in with a Google account</a
|
||||
>
|
||||
to continue</v-alert
|
||||
>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
@@ -42,14 +69,6 @@
|
||||
</v-row>
|
||||
|
||||
<DocList v-if="user" />
|
||||
|
||||
<v-row v-else
|
||||
><v-col
|
||||
><v-alert color="#f2d97c" light icon="mdi-alert"
|
||||
>Sign in to set up an auto archiver</v-alert
|
||||
></v-col
|
||||
></v-row
|
||||
>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user