Skip to content

Commit

Permalink
Add privacy policy and store logo artwork
Browse files Browse the repository at this point in the history
  • Loading branch information
larsbaunwall committed May 12, 2020
1 parent 880641e commit 5c40cf7
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 2 deletions.
Binary file added artwork/icon/square300x300.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions client-app/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Vue from 'vue'
import VueRouter from 'vue-router'
import Start from '../views/Start.vue'
import Session from "../views/Session.vue";
import Privacy from "../views/PrivacyPolicy.vue";
import store from '../store';

Vue.use(VueRouter)
Expand All @@ -18,7 +19,13 @@ const routes = [
name: 'Session',
component: Session,
props: true
}
},
{
path: '/privacy',
name: 'Privacy',
component: Privacy,
props: true
},
]

const router = new VueRouter({
Expand All @@ -28,7 +35,7 @@ const router = new VueRouter({
})

router.beforeEach(async (to, from, next) => {
if (to.name !== 'Start' && !store.getters.isAuthenticated)
if (to.name === 'Session' && !store.getters.isAuthenticated)
{
let dest = { name: 'Start', params: { id: to.params?.id } };
next(dest)
Expand Down
37 changes: 37 additions & 0 deletions client-app/src/views/PrivacyPolicy.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<template>
<div>
<section class="section"></section>
<section class="section">
<div class="container">
<div class="columns is-centered">
<div class="column is-8">
<div class="content">
<h2 class="title">Privacy Policy</h2>
<p>
Your privacy is important to us. It is plodo's policy to respect your privacy regarding any information we may collect from you across our website,
<a
href="http://www.plodo.io"
>http://www.plodo.io</a>, our desktop app, and other sites we own and operate.
</p>
<p>We only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.</p>
<p>We only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorized access, disclosure, copying, use or modification.</p>
<p>We don’t share any personally identifying information publicly or with third-parties, except when required to by law.</p>
<p>Our website may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.</p>
<p>You are free to refuse our request for your personal information, with the understanding that we may be unable to provide you with some of your desired services.</p>
<p>Your continued use of our website will be regarded as acceptance of our practices around privacy and personal information. If you have any questions about how we handle user data and personal information, feel free to contact us.</p>
<p>Plodo is open source, find us on <a href="https://github.com/larsbaunwall/plodo">GitHub</a>.</p>
<p>This policy is effective as of 1 January 2020.</p>
</div>
</div>
</div>
</div>
</section>
</div>
</template>

<script>
export default {};
</script>

<style>
</style>

0 comments on commit 5c40cf7

Please sign in to comment.