summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/NoPermissionError.vue
diff options
context:
space:
mode:
authorJannik Schönartz2019-02-25 07:53:21 +0100
committerJannik Schönartz2019-02-25 07:53:21 +0100
commitc3f06a43fb1286f211c1475a87dc8b4f6d88948b (patch)
tree8505d2dad3e450b22577408cd678a555beef5be6 /webapp/src/components/NoPermissionError.vue
parent[webapp/user] Add user management module for creating / deleting user accounts (diff)
parent[permissionmanager] rework for blacklist system (diff)
downloadbas-c3f06a43fb1286f211c1475a87dc8b4f6d88948b.tar.gz
bas-c3f06a43fb1286f211c1475a87dc8b4f6d88948b.tar.xz
bas-c3f06a43fb1286f211c1475a87dc8b4f6d88948b.zip
Merge
Diffstat (limited to 'webapp/src/components/NoPermissionError.vue')
-rw-r--r--webapp/src/components/NoPermissionError.vue34
1 files changed, 34 insertions, 0 deletions
diff --git a/webapp/src/components/NoPermissionError.vue b/webapp/src/components/NoPermissionError.vue
new file mode 100644
index 0000000..031ab78
--- /dev/null
+++ b/webapp/src/components/NoPermissionError.vue
@@ -0,0 +1,34 @@
+<i18n>
+{
+ "en": {
+ "noPermission": "You don't have permission for this."
+ },
+ "de": {
+ "noPermission": "Sie haben keine Berechtigung hierfür."
+ }
+}
+</i18n>
+
+<template>
+ <div>
+ {{ $t('noPermission') }}
+ </div>
+</template>
+
+<script>
+
+export default {
+ name: 'NoPermissionError',
+ data () {
+ return {
+ }
+ },
+ methods: {
+ }
+}
+</script>
+
+<!-- Add "scoped" attribute to limit CSS to this component only -->
+<style scoped>
+
+</style>