@@ -167,7 +166,6 @@ export default {
};
},
computed: {
-
/**
* Get the current page the user is on
*/
diff --git a/resources/js/views/settings/Privacy.vue b/resources/js/views/settings/Privacy.vue
index eb702bebd..5aed50582 100644
--- a/resources/js/views/settings/Privacy.vue
+++ b/resources/js/views/settings/Privacy.vue
@@ -138,7 +138,7 @@ export default {
return this.user.show_name_createdby;
},
set (v) {
- this.$store.commit('privacy', {
+ this.$store.commit('userColumnUpdate', {
column: 'show_name_createdby',
v
});
@@ -153,7 +153,7 @@ export default {
return this.user.show_username_createdby;
},
set (v) {
- this.$store.commit('privacy', {
+ this.$store.commit('userColumnUpdate', {
column: 'show_username_createdby',
v
});
@@ -168,7 +168,7 @@ export default {
return this.user.show_name;
},
set (v) {
- this.$store.commit('privacy', {
+ this.$store.commit('userColumnUpdate', {
column: 'show_name',
v
});
@@ -183,7 +183,7 @@ export default {
return this.user.show_username;
},
set (v) {
- this.$store.commit('privacy', {
+ this.$store.commit('userColumnUpdate', {
column: 'show_username',
v
});
@@ -198,7 +198,7 @@ export default {
return this.user.show_name_maps;
},
set (v) {
- this.$store.commit('privacy', {
+ this.$store.commit('userColumnUpdate', {
column: 'show_name_maps',
v
});
@@ -213,7 +213,7 @@ export default {
return this.user.show_username_maps;
},
set (v) {
- this.$store.commit('privacy', {
+ this.$store.commit('userColumnUpdate', {
column: 'show_username_maps',
v
});
diff --git a/resources/js/views/settings/Tagging.vue b/resources/js/views/settings/Tagging.vue
new file mode 100644
index 000000000..a0f19375b
--- /dev/null
+++ b/resources/js/views/settings/Tagging.vue
@@ -0,0 +1,84 @@
+
+
+
{{ $t('settings.tagging.tagging') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/routes/web.php b/routes/web.php
index 2c4d6a620..fc9df6a00 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -169,6 +169,9 @@
// Update the users privacy eg toggle their anonmyity
Route::post('/settings/privacy/update', 'UsersController@togglePrivacy');
+// Update the users tagging eg toggle their tagging settings
+Route::post('/settings/tagging/update', 'UsersController@toggleTagging');
+
// Control Ethereum wallet and Littercoin
Route::post('/settings/littercoin/update', 'BlockchainController@updateWallet');
Route::post('/settings/littercoin/removewallet', 'BlockchainController@removeWallet');