Remove UID and GID from accounts list

This commit is contained in:
Benedikt Kulmann
2020-09-10 16:38:30 +02:00
parent 06880c1488
commit bcb115ef1a
3 changed files with 4 additions and 8 deletions

View File

File diff suppressed because one or more lines are too long

View File

@@ -16,8 +16,6 @@
<oc-table-cell type="head" v-text="$gettext('Display name')" />
<oc-table-cell type="head" v-text="$gettext('Email')" />
<oc-table-cell type="head" v-text="$gettext('Role')" />
<oc-table-cell shrink type="head" class="uk-text-nowrap" v-text="$gettext('Uid number')" />
<oc-table-cell shrink type="head" class="uk-text-nowrap" v-text="$gettext('Gid number')" />
<oc-table-cell shrink type="head" v-text="$gettext('Enabled')" />
</oc-table-row>
</oc-table-group>
@@ -33,7 +31,7 @@
</template>
<script>
import {mapActions, mapGetters, mapMutations } from 'vuex'
import { mapActions, mapGetters, mapMutations } from 'vuex'
import AccountsListRow from './AccountsListRow.vue'
export default {

View File

@@ -39,8 +39,6 @@
</ul>
</oc-drop>
</oc-table-cell>
<oc-table-cell v-text="account.uidNumber || '-'" />
<oc-table-cell v-text="account.gidNumber || '-'" />
<oc-table-cell class="uk-text-center">
<oc-icon
v-if="account.accountEnabled"