123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077 |
- <template lang='pug'>
- v-container(fluid, grid-list-lg)
- v-layout(row, wrap)
- v-flex(xs12)
- .admin-header
- img.animated.fadeInUp(src='/_assets/svg/icon-male-user.svg', :alt='$t(`admin:users.edit`)', style='width: 80px;')
- .admin-header-title
- .headline.blue--text.text--darken-2.animated.fadeInLeft {{$t('admin:users.edit')}}
- .subtitle-1.grey--text.animated.fadeInLeft.wait-p2s {{user.name}}
- v-spacer
- i18next.pr-4.caption.grey--text.animated.fadeInDown(path='admin:users.id', tag='div')
- strong(place='id') {{user.id}}
- template(v-if='user.isActive')
- status-indicator.mr-3(positive, pulse)
- .caption.green--text {{$t('admin:users.active')}}
- template(v-else)
- status-indicator.mr-3(negative, pulse)
- .caption.red--text {{$t('admin:users.inactive')}}
- template(v-if='user.isVerified')
- status-indicator.mr-3.ml-4(active, pulse)
- .caption.blue--text {{$t('admin:users.verified')}}
- template(v-else)
- status-indicator.mr-3.ml-4(intermediary, pulse)
- .caption.deep-orange--text {{$t('admin:users.unverified')}}
- v-spacer
- v-btn.ml-3.animated.fadeInDown.wait-p3s(color='grey', icon, outlined, to='/users')
- v-icon mdi-arrow-left
- v-menu(offset-y, origin='top right')
- template(v-slot:activator='{ on }')
- v-btn.ml-3.animated.fadeInDown.wait-p2s(color='black', v-on='on', depressed, dark)
- span Actions
- v-icon(right) mdi-chevron-down
- v-list(dense, nav)
- v-list-item(v-if='!user.isActive', @click='activateUser')
- v-list-item-icon
- v-icon(color='purple') mdi-account-key
- v-list-item-title Activate
- v-list-item(v-else, @click='deactivateUser', :disabled='user.id == currentUserId || user.isSystem')
- v-list-item-icon
- v-icon(color='purple') mdi-account-cancel
- v-list-item-title Deactivate
- v-list-item(@click='verifyUser', :disabled='user.isVerified')
- v-list-item-icon
- v-icon(color='blue') mdi-account-check
- v-list-item-title Set as Verified
- v-list-item(@click='deleteUserConfirm', :disabled='user.id == currentUserId || user.isSystem')
- v-list-item-icon
- v-icon(color='red') mdi-trash-can-outline
- v-list-item-title Delete
- v-btn.ml-3.animated.fadeInDown(color='primary', large, depressed, @click='updateUser')
- v-icon(left) mdi-check
- span {{$t('admin:users.updateUser')}}
- v-flex(xs6)
- v-card.animated.fadeInUp
- v-toolbar(color='primary', dense, dark, flat)
- v-icon.mr-2 mdi-information-variant
- span {{$t('admin:users.basicInfo')}}
- v-list.py-0(two-line, dense)
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-email-variant
- v-list-item-content
- v-list-item-title {{$t('admin:users.email')}}
- v-list-item-subtitle {{ user.email }}
- v-list-item-action(v-if='!user.isSystem && user.providerKey === `local`')
- v-menu(
- v-model='editPop.email'
- :close-on-content-click='false'
- min-width='350'
- left
- )
- template(v-slot:activator='{ on }')
- v-btn(icon, color='grey', x-small, v-on='on', @click='focusField(`iptEmail`)')
- v-icon mdi-pencil
- v-card
- v-text-field(
- ref='iptEmail'
- v-model='user.email'
- :label='$t(`admin:users.email`)'
- solo
- hide-details
- append-icon='mdi-check'
- @click:append='editPop.email = false'
- @keydown.enter='editPop.email = false'
- @keydown.esc='editPop.email = false'
- )
- v-divider
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-account
- v-list-item-content
- v-list-item-title {{$t('admin:users.displayName')}}
- v-list-item-subtitle {{ user.name }}
- v-list-item-action
- v-menu(
- v-model='editPop.name'
- :close-on-content-click='false'
- min-width='350'
- left
- )
- template(v-slot:activator='{ on }')
- v-btn(icon, color='grey', x-small, v-on='on', @click='focusField(`iptDisplayName`)')
- v-icon mdi-pencil
- v-card
- v-text-field(
- ref='iptDisplayName'
- v-model='user.name'
- :label='$t(`admin:users.displayName`)'
- solo
- hide-details
- append-icon='mdi-check'
- @click:append='editPop.name = false'
- @keydown.enter='editPop.name = false'
- @keydown.esc='editPop.name = false'
- )
- v-card.mt-3.animated.fadeInUp.wait-p2s(v-if='!user.isSystem')
- v-toolbar(color='primary', dense, dark, flat)
- v-icon.mr-2 mdi-lock-outline
- span {{$t('admin:users.authentication')}}
- v-list.py-0(two-line, dense)
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-domain
- v-list-item-content
- v-list-item-title {{$t('admin:users.authProvider')}}
- v-list-item-subtitle {{ user.providerName }} #[em.caption ({{ user.providerKey }})]
- template(v-if='user.providerKey === `local`')
- v-divider
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-form-textbox-password
- v-list-item-content
- v-list-item-title {{$t('admin:users.password')}}
- v-list-item-subtitle ••••••••
- v-list-item-action
- v-menu(
- v-model='editPop.newPassword'
- :close-on-content-click='false'
- min-width='350'
- left
- )
- template(v-slot:activator='{ on: menu }')
- v-tooltip(top)
- template(v-slot:activator='{ on: tooltip }')
- v-btn(icon, color='grey', x-small, v-on='{ ...menu, ...tooltip }', @click='focusField(`iptNewPassword`)')
- v-icon mdi-pencil
- span {{$t('admin:users.changePassword')}}
- v-card
- v-text-field(
- ref='iptNewPassword'
- v-model='newPassword'
- :label='$t(`admin:users.newPassword`)'
- solo
- hide-details
- append-icon='mdi-check'
- type='password'
- @click:append='editPop.newPassword = false'
- @keydown.enter='editPop.newPassword = false'
- @keydown.esc='editPop.newPassword = false'
- )
- v-list-item-action
- v-tooltip(top)
- template(v-slot:activator='{ on }')
- v-btn(icon, color='grey', x-small, v-on='on', disabled)
- v-icon mdi-email
- span Send Password Reset Email
- template(v-if='user.providerIs2FACapable')
- v-divider
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-two-factor-authentication
- v-list-item-content
- v-list-item-title {{$t('admin:users.tfa')}}
- v-list-item-subtitle.green--text(v-if='user.tfaIsActive') Active
- v-list-item-subtitle.red--text(v-else) Inactive
- v-list-item-action
- v-tooltip(top)
- template(v-slot:activator='{ on }')
- v-btn(icon, color='grey', x-small, v-on='on', @click='toggle2FA')
- v-icon mdi-power
- span {{$t('admin:users.toggle2FA')}}
- template(v-if='user.providerId')
- v-divider
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-music-accidental-sharp
- v-list-item-content
- v-list-item-title {{$t('admin:users.authProviderId')}}
- v-list-item-subtitle {{ user.providerId }}
- v-card.mt-3.animated.fadeInUp.wait-p4s
- v-toolbar(color='primary', dense, dark, flat)
- v-icon.mr-2 mdi-account-group
- span {{$t('admin:users.groups')}}
- v-list(dense)
- template(v-for='(group, idx) in user.groups')
- v-list-item(:key='`group-` + group.id')
- v-list-item-avatar(size='32')
- v-icon mdi-account-group-outline
- v-list-item-content
- v-list-item-title {{group.name}}
- v-list-item-action(v-if='!user.isSystem')
- v-btn(icon, color='red', x-small, @click='unassignGroup(group.id)')
- v-icon mdi-close
- v-divider(v-if='idx < user.groups.length - 1')
- v-alert.mx-3(v-if='user.groups.length < 1', outlined, color='grey darken-1', icon='mdi-alert')
- .caption {{$t('admin:users.noGroupAssigned')}}
- v-card-chin(v-if='!user.isSystem')
- v-spacer
- v-select(
- ref='iptAssignGroup'
- :items='groups'
- v-model='newGroup'
- :label='$t(`admin:users.selectGroup`)'
- item-value='id'
- item-text='name'
- item-disabled='isSystem'
- solo
- flat
- hide-details
- @keydown.esc='editPop.assignGroup = false'
- style='max-width: 300px;'
- dense
- )
- v-btn.ml-2.px-4(depressed, color='primary', @click='assignGroup', :disabled='newGroup === 0')
- v-icon(left) mdi-clipboard-account-outline
- span {{$t('admin:users.groupAssign')}}
- v-system-bar(window, :color='$vuetify.theme.dark ? `grey darken-4-l3` : `grey lighten-3`')
- v-spacer
- .caption {{$t('admin:users.groupAssignNotice')}}
- v-flex(xs6)
- v-card.animated.fadeInUp.wait-p2s
- v-toolbar(color='primary', dense, dark, flat)
- v-icon.mr-2 mdi-account-badge-outline
- span {{$t('admin:users.extendedMetadata')}}
- v-list.py-0(two-line, dense)
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-map-marker
- v-list-item-content
- v-list-item-title {{$t('admin:users.location')}}
- v-list-item-subtitle {{ user.location }}
- v-list-item-action
- v-menu(
- v-model='editPop.location'
- :close-on-content-click='false'
- min-width='350'
- left
- )
- template(v-slot:activator='{ on }')
- v-btn(icon, color='grey', x-small, v-on='on', @click='focusField(`iptLocation`)')
- v-icon mdi-pencil
- v-card
- v-text-field(
- ref='iptLocation'
- v-model='user.location'
- :label='$t(`admin:users.location`)'
- solo
- hide-details
- append-icon='mdi-check'
- @click:append='editPop.location = false'
- @keydown.enter='editPop.location = false'
- @keydown.esc='editPop.location = false'
- )
- v-divider
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-briefcase
- v-list-item-content
- v-list-item-title {{$t('admin:users.jobTitle')}}
- v-list-item-subtitle {{ user.jobTitle }}
- v-list-item-action
- v-menu(
- v-model='editPop.jobTitle'
- :close-on-content-click='false'
- min-width='350'
- left
- )
- template(v-slot:activator='{ on }')
- v-btn(icon, color='grey', x-small, v-on='on', @click='focusField(`iptJobTitle`)')
- v-icon mdi-pencil
- v-card
- v-text-field(
- ref='iptJobTitle'
- v-model='user.jobTitle'
- :label='$t(`admin:users.jobTitle`)'
- solo
- hide-details
- append-icon='mdi-check'
- @click:append='editPop.jobTitle = false'
- @keydown.enter='editPop.jobTitle = false'
- @keydown.esc='editPop.jobTitle = false'
- )
- v-divider
- v-list-item
- v-list-item-avatar(size='32')
- v-icon mdi-map-clock-outline
- v-list-item-content
- v-list-item-title {{$t('admin:users.timezone')}}
- v-list-item-subtitle {{ user.timezone }}
- v-list-item-action
- v-menu(
- v-model='editPop.timezone'
- :close-on-content-click='false'
- min-width='350'
- left
- )
- template(v-slot:activator='{ on }')
- v-btn(icon, color='grey', x-small, v-on='on', @click='focusField(`iptTimezone`)')
- v-icon mdi-pencil
- v-card
- v-select(
- ref='iptTimezone'
- :items='timezones'
- v-model='user.timezone'
- :label='$t(`admin:users.timezone`)'
- solo
- dense
- hide-details
- append-icon='mdi-check'
- @click:append='editPop.timezone = false'
- @keydown.enter='editPop.timezone = false'
- @keydown.esc='editPop.timezone = false'
- )
- v-card.mt-3.animated.fadeInUp.wait-p4s
- v-toolbar(color='teal', dark, dense, flat)
- v-toolbar-title
- .subtitle-1 {{$t('profile:activity.title')}}
- v-card-text.grey--text.text--darken-2
- .caption.grey--text {{$t('profile:activity.joinedOn')}}
- .body-2: strong {{ user.createdAt | moment('LLLL') }}
- .caption.grey--text.mt-3 {{$t('profile:activity.lastUpdatedOn')}}
- .body-2: strong {{ user.updatedAt | moment('LLLL') }}
- .caption.grey--text.mt-3 {{$t('profile:activity.lastLoginOn')}}
- .body-2: strong {{ user.lastLoginAt | moment('LLLL') }}
- v-card.mt-3.animated.fadeInUp.wait-p6s
- v-toolbar(color='teal', dense, dark, flat)
- v-icon.mr-2 mdi-file-document-box-multiple-outline
- span Content
- v-card-text
- em.caption.grey--text Coming soon
- v-dialog(v-model='deleteUserDialog', max-width='500')
- v-card
- .dialog-header.is-red {{$t('admin:users.deleteConfirmTitle')}}
- v-card-text.pt-5
- i18next(path='admin:users.deleteConfirmText', tag='span')
- strong(place='username') {{ user.email }}
- .mt-3 {{$t('admin:users.deleteConfirmReplaceWarn')}}
- v-divider.my-3
- .d-flex.align-center.mt-3
- v-btn.text-none(color='primary', depressed, @click='deleteSearchUserDialog = true')
- v-icon(left) mdi-clipboard-account
- | Select User...
- .caption.pl-3
- strong ID {{deleteReplaceUser.id}}
- .caption {{deleteReplaceUser.name}}
- em {{deleteReplaceUser.email}}
- v-card-chin
- v-spacer
- v-btn(text, @click='deleteUserDialog = false') {{$t('common:actions.cancel')}}
- v-btn(color='red', dark, @click='deleteUser') {{$t('common:actions.delete')}}
- user-search(v-model='deleteSearchUserDialog', @select='assignDeleteUser')
- </template>
- <script>
- import _ from 'lodash'
- import { get } from 'vuex-pathify'
- import gql from 'graphql-tag'
- import { StatusIndicator } from 'vue-status-indicator'
- import UserSearch from '../common/user-search.vue'
- import groupsQuery from 'gql/admin/users/users-query-groups.gql'
- export default {
- i18nOptions: {
- namespaces: ['admin', 'profile']
- },
- components: {
- StatusIndicator,
- UserSearch
- },
- data () {
- return {
- deleteUserDialog: false,
- deleteSearchUserDialog: false,
- deleteReplaceUser: {
- id: 1,
- name: '',
- email: ''
- },
- editPop: {
- email: false,
- name: false,
- pwd: false,
- location: false,
- jobTitle: false,
- timezone: false,
- newPassword: false,
- assignGroup: false
- },
- newGroup: 0,
- newPassword: '',
- user: {
- email: '',
- name: '',
- location: '',
- jobTitle: '',
- timezone: '',
- groups: [],
- isActive: false,
- isVerified: false
- },
- timezones: [
- { text: '(GMT-11:00) Niue', value: 'Pacific/Niue' },
- { text: '(GMT-11:00) Pago Pago', value: 'Pacific/Pago_Pago' },
- { text: '(GMT-10:00) Hawaii Time', value: 'Pacific/Honolulu' },
- { text: '(GMT-10:00) Rarotonga', value: 'Pacific/Rarotonga' },
- { text: '(GMT-10:00) Tahiti', value: 'Pacific/Tahiti' },
- { text: '(GMT-09:30) Marquesas', value: 'Pacific/Marquesas' },
- { text: '(GMT-09:00) Alaska Time', value: 'America/Anchorage' },
- { text: '(GMT-09:00) Gambier', value: 'Pacific/Gambier' },
- { text: '(GMT-08:00) Pacific Time', value: 'America/Los_Angeles' },
- { text: '(GMT-08:00) Pacific Time - Tijuana', value: 'America/Tijuana' },
- { text: '(GMT-08:00) Pacific Time - Vancouver', value: 'America/Vancouver' },
- { text: '(GMT-08:00) Pacific Time - Whitehorse', value: 'America/Whitehorse' },
- { text: '(GMT-08:00) Pitcairn', value: 'Pacific/Pitcairn' },
- { text: '(GMT-07:00) Mountain Time', value: 'America/Denver' },
- { text: '(GMT-07:00) Mountain Time - Arizona', value: 'America/Phoenix' },
- { text: '(GMT-07:00) Mountain Time - Chihuahua, Mazatlan', value: 'America/Mazatlan' },
- { text: '(GMT-07:00) Mountain Time - Dawson Creek', value: 'America/Dawson_Creek' },
- { text: '(GMT-07:00) Mountain Time - Edmonton', value: 'America/Edmonton' },
- { text: '(GMT-07:00) Mountain Time - Hermosillo', value: 'America/Hermosillo' },
- { text: '(GMT-07:00) Mountain Time - Yellowknife', value: 'America/Yellowknife' },
- { text: '(GMT-06:00) Belize', value: 'America/Belize' },
- { text: '(GMT-06:00) Central Time', value: 'America/Chicago' },
- { text: '(GMT-06:00) Central Time - Mexico City', value: 'America/Mexico_City' },
- { text: '(GMT-06:00) Central Time - Regina', value: 'America/Regina' },
- { text: '(GMT-06:00) Central Time - Tegucigalpa', value: 'America/Tegucigalpa' },
- { text: '(GMT-06:00) Central Time - Winnipeg', value: 'America/Winnipeg' },
- { text: '(GMT-06:00) Costa Rica', value: 'America/Costa_Rica' },
- { text: '(GMT-06:00) El Salvador', value: 'America/El_Salvador' },
- { text: '(GMT-06:00) Galapagos', value: 'Pacific/Galapagos' },
- { text: '(GMT-06:00) Guatemala', value: 'America/Guatemala' },
- { text: '(GMT-06:00) Managua', value: 'America/Managua' },
- { text: '(GMT-05:00) America Cancun', value: 'America/Cancun' },
- { text: '(GMT-05:00) Bogota', value: 'America/Bogota' },
- { text: '(GMT-05:00) Easter Island', value: 'Pacific/Easter' },
- { text: '(GMT-05:00) Eastern Time', value: 'America/New_York' },
- { text: '(GMT-05:00) Eastern Time - Iqaluit', value: 'America/Iqaluit' },
- { text: '(GMT-05:00) Eastern Time - Toronto', value: 'America/Toronto' },
- { text: '(GMT-05:00) Guayaquil', value: 'America/Guayaquil' },
- { text: '(GMT-05:00) Havana', value: 'America/Havana' },
- { text: '(GMT-05:00) Jamaica', value: 'America/Jamaica' },
- { text: '(GMT-05:00) Lima', value: 'America/Lima' },
- { text: '(GMT-05:00) Nassau', value: 'America/Nassau' },
- { text: '(GMT-05:00) Panama', value: 'America/Panama' },
- { text: '(GMT-05:00) Port-au-Prince', value: 'America/Port-au-Prince' },
- { text: '(GMT-05:00) Rio Branco', value: 'America/Rio_Branco' },
- { text: '(GMT-04:00) Atlantic Time - Halifax', value: 'America/Halifax' },
- { text: '(GMT-04:00) Barbados', value: 'America/Barbados' },
- { text: '(GMT-04:00) Bermuda', value: 'Atlantic/Bermuda' },
- { text: '(GMT-04:00) Boa Vista', value: 'America/Boa_Vista' },
- { text: '(GMT-04:00) Caracas', value: 'America/Caracas' },
- { text: '(GMT-04:00) Curacao', value: 'America/Curacao' },
- { text: '(GMT-04:00) Grand Turk', value: 'America/Grand_Turk' },
- { text: '(GMT-04:00) Guyana', value: 'America/Guyana' },
- { text: '(GMT-04:00) La Paz', value: 'America/La_Paz' },
- { text: '(GMT-04:00) Manaus', value: 'America/Manaus' },
- { text: '(GMT-04:00) Martinique', value: 'America/Martinique' },
- { text: '(GMT-04:00) Port of Spain', value: 'America/Port_of_Spain' },
- { text: '(GMT-04:00) Porto Velho', value: 'America/Porto_Velho' },
- { text: '(GMT-04:00) Puerto Rico', value: 'America/Puerto_Rico' },
- { text: '(GMT-04:00) Santo Domingo', value: 'America/Santo_Domingo' },
- { text: '(GMT-04:00) Thule', value: 'America/Thule' },
- { text: '(GMT-03:30) Newfoundland Time - St. Johns', value: 'America/St_Johns' },
- { text: '(GMT-03:00) Araguaina', value: 'America/Araguaina' },
- { text: '(GMT-03:00) Asuncion', value: 'America/Asuncion' },
- { text: '(GMT-03:00) Belem', value: 'America/Belem' },
- { text: '(GMT-03:00) Buenos Aires', value: 'America/Argentina/Buenos_Aires' },
- { text: '(GMT-03:00) Campo Grande', value: 'America/Campo_Grande' },
- { text: '(GMT-03:00) Cayenne', value: 'America/Cayenne' },
- { text: '(GMT-03:00) Cuiaba', value: 'America/Cuiaba' },
- { text: '(GMT-03:00) Fortaleza', value: 'America/Fortaleza' },
- { text: '(GMT-03:00) Godthab', value: 'America/Godthab' },
- { text: '(GMT-03:00) Maceio', value: 'America/Maceio' },
- { text: '(GMT-03:00) Miquelon', value: 'America/Miquelon' },
- { text: '(GMT-03:00) Montevideo', value: 'America/Montevideo' },
- { text: '(GMT-03:00) Palmer', value: 'Antarctica/Palmer' },
- { text: '(GMT-03:00) Paramaribo', value: 'America/Paramaribo' },
- { text: '(GMT-03:00) Punta Arenas', value: 'America/Punta_Arenas' },
- { text: '(GMT-03:00) Recife', value: 'America/Recife' },
- { text: '(GMT-03:00) Rothera', value: 'Antarctica/Rothera' },
- { text: '(GMT-03:00) Salvador', value: 'America/Bahia' },
- { text: '(GMT-03:00) Santiago', value: 'America/Santiago' },
- { text: '(GMT-03:00) Sao Paulo', value: 'America/Sao_Paulo' },
- { text: '(GMT-03:00) Stanley', value: 'Atlantic/Stanley' },
- { text: '(GMT-02:00) Noronha', value: 'America/Noronha' },
- { text: '(GMT-02:00) South Georgia', value: 'Atlantic/South_Georgia' },
- { text: '(GMT-01:00) Azores', value: 'Atlantic/Azores' },
- { text: '(GMT-01:00) Cape Verde', value: 'Atlantic/Cape_Verde' },
- { text: '(GMT-01:00) Scoresbysund', value: 'America/Scoresbysund' },
- { text: '(GMT+00:00) Abidjan', value: 'Africa/Abidjan' },
- { text: '(GMT+00:00) Accra', value: 'Africa/Accra' },
- { text: '(GMT+00:00) Bissau', value: 'Africa/Bissau' },
- { text: '(GMT+00:00) Canary Islands', value: 'Atlantic/Canary' },
- { text: '(GMT+00:00) Casablanca', value: 'Africa/Casablanca' },
- { text: '(GMT+00:00) Danmarkshavn', value: 'America/Danmarkshavn' },
- { text: '(GMT+00:00) Dublin', value: 'Europe/Dublin' },
- { text: '(GMT+00:00) El Aaiun', value: 'Africa/El_Aaiun' },
- { text: '(GMT+00:00) Faeroe', value: 'Atlantic/Faroe' },
- { text: '(GMT+00:00) GMT (no daylight saving)', value: 'Etc/GMT' },
- { text: '(GMT+00:00) Lisbon', value: 'Europe/Lisbon' },
- { text: '(GMT+00:00) London', value: 'Europe/London' },
- { text: '(GMT+00:00) Monrovia', value: 'Africa/Monrovia' },
- { text: '(GMT+00:00) Reykjavik', value: 'Atlantic/Reykjavik' },
- { text: '(GMT+01:00) Algiers', value: 'Africa/Algiers' },
- { text: '(GMT+01:00) Amsterdam', value: 'Europe/Amsterdam' },
- { text: '(GMT+01:00) Andorra', value: 'Europe/Andorra' },
- { text: '(GMT+01:00) Berlin', value: 'Europe/Berlin' },
- { text: '(GMT+01:00) Brussels', value: 'Europe/Brussels' },
- { text: '(GMT+01:00) Budapest', value: 'Europe/Budapest' },
- { text: '(GMT+01:00) Central European Time - Belgrade', value: 'Europe/Belgrade' },
- { text: '(GMT+01:00) Central European Time - Prague', value: 'Europe/Prague' },
- { text: '(GMT+01:00) Ceuta', value: 'Africa/Ceuta' },
- { text: '(GMT+01:00) Copenhagen', value: 'Europe/Copenhagen' },
- { text: '(GMT+01:00) Gibraltar', value: 'Europe/Gibraltar' },
- { text: '(GMT+01:00) Lagos', value: 'Africa/Lagos' },
- { text: '(GMT+01:00) Luxembourg', value: 'Europe/Luxembourg' },
- { text: '(GMT+01:00) Madrid', value: 'Europe/Madrid' },
- { text: '(GMT+01:00) Malta', value: 'Europe/Malta' },
- { text: '(GMT+01:00) Monaco', value: 'Europe/Monaco' },
- { text: '(GMT+01:00) Ndjamena', value: 'Africa/Ndjamena' },
- { text: '(GMT+01:00) Oslo', value: 'Europe/Oslo' },
- { text: '(GMT+01:00) Paris', value: 'Europe/Paris' },
- { text: '(GMT+01:00) Rome', value: 'Europe/Rome' },
- { text: '(GMT+01:00) Stockholm', value: 'Europe/Stockholm' },
- { text: '(GMT+01:00) Tirane', value: 'Europe/Tirane' },
- { text: '(GMT+01:00) Tunis', value: 'Africa/Tunis' },
- { text: '(GMT+01:00) Vienna', value: 'Europe/Vienna' },
- { text: '(GMT+01:00) Warsaw', value: 'Europe/Warsaw' },
- { text: '(GMT+01:00) Zurich', value: 'Europe/Zurich' },
- { text: '(GMT+02:00) Amman', value: 'Asia/Amman' },
- { text: '(GMT+02:00) Athens', value: 'Europe/Athens' },
- { text: '(GMT+02:00) Beirut', value: 'Asia/Beirut' },
- { text: '(GMT+02:00) Bucharest', value: 'Europe/Bucharest' },
- { text: '(GMT+02:00) Cairo', value: 'Africa/Cairo' },
- { text: '(GMT+02:00) Chisinau', value: 'Europe/Chisinau' },
- { text: '(GMT+02:00) Damascus', value: 'Asia/Damascus' },
- { text: '(GMT+02:00) Gaza', value: 'Asia/Gaza' },
- { text: '(GMT+02:00) Helsinki', value: 'Europe/Helsinki' },
- { text: '(GMT+02:00) Jerusalem', value: 'Asia/Jerusalem' },
- { text: '(GMT+02:00) Johannesburg', value: 'Africa/Johannesburg' },
- { text: '(GMT+02:00) Khartoum', value: 'Africa/Khartoum' },
- { text: '(GMT+02:00) Kyiv', value: 'Europe/Kyiv' },
- { text: '(GMT+02:00) Maputo', value: 'Africa/Maputo' },
- { text: '(GMT+02:00) Moscow-01 - Kaliningrad', value: 'Europe/Kaliningrad' },
- { text: '(GMT+02:00) Nicosia', value: 'Asia/Nicosia' },
- { text: '(GMT+02:00) Riga', value: 'Europe/Riga' },
- { text: '(GMT+02:00) Sofia', value: 'Europe/Sofia' },
- { text: '(GMT+02:00) Tallinn', value: 'Europe/Tallinn' },
- { text: '(GMT+02:00) Tripoli', value: 'Africa/Tripoli' },
- { text: '(GMT+02:00) Vilnius', value: 'Europe/Vilnius' },
- { text: '(GMT+02:00) Windhoek', value: 'Africa/Windhoek' },
- { text: '(GMT+03:00) Baghdad', value: 'Asia/Baghdad' },
- { text: '(GMT+03:00) Istanbul', value: 'Europe/Istanbul' },
- { text: '(GMT+03:00) Minsk', value: 'Europe/Minsk' },
- { text: '(GMT+03:00) Moscow+00 - Moscow', value: 'Europe/Moscow' },
- { text: '(GMT+03:00) Nairobi', value: 'Africa/Nairobi' },
- { text: '(GMT+03:00) Qatar', value: 'Asia/Qatar' },
- { text: '(GMT+03:00) Riyadh', value: 'Asia/Riyadh' },
- { text: '(GMT+03:00) Syowa', value: 'Antarctica/Syowa' },
- { text: '(GMT+03:30) Tehran', value: 'Asia/Tehran' },
- { text: '(GMT+04:00) Baku', value: 'Asia/Baku' },
- { text: '(GMT+04:00) Dubai', value: 'Asia/Dubai' },
- { text: '(GMT+04:00) Mahe', value: 'Indian/Mahe' },
- { text: '(GMT+04:00) Mauritius', value: 'Indian/Mauritius' },
- { text: '(GMT+04:00) Moscow+01 - Samara', value: 'Europe/Samara' },
- { text: '(GMT+04:00) Reunion', value: 'Indian/Reunion' },
- { text: '(GMT+04:00) Tbilisi', value: 'Asia/Tbilisi' },
- { text: '(GMT+04:00) Yerevan', value: 'Asia/Yerevan' },
- { text: '(GMT+04:30) Kabul', value: 'Asia/Kabul' },
- { text: '(GMT+05:00) Aqtau', value: 'Asia/Aqtau' },
- { text: '(GMT+05:00) Aqtobe', value: 'Asia/Aqtobe' },
- { text: '(GMT+05:00) Ashgabat', value: 'Asia/Ashgabat' },
- { text: '(GMT+05:00) Dushanbe', value: 'Asia/Dushanbe' },
- { text: '(GMT+05:00) Karachi', value: 'Asia/Karachi' },
- { text: '(GMT+05:00) Kerguelen', value: 'Indian/Kerguelen' },
- { text: '(GMT+05:00) Maldives', value: 'Indian/Maldives' },
- { text: '(GMT+05:00) Mawson', value: 'Antarctica/Mawson' },
- { text: '(GMT+05:00) Moscow+02 - Yekaterinburg', value: 'Asia/Yekaterinburg' },
- { text: '(GMT+05:00) Tashkent', value: 'Asia/Tashkent' },
- { text: '(GMT+05:30) Colombo', value: 'Asia/Colombo' },
- { text: '(GMT+05:30) India Standard Time', value: 'Asia/Kolkata' },
- { text: '(GMT+05:45) Kathmandu', value: 'Asia/Kathmandu' },
- { text: '(GMT+06:00) Almaty', value: 'Asia/Almaty' },
- { text: '(GMT+06:00) Bishkek', value: 'Asia/Bishkek' },
- { text: '(GMT+06:00) Chagos', value: 'Indian/Chagos' },
- { text: '(GMT+06:00) Dhaka', value: 'Asia/Dhaka' },
- { text: '(GMT+06:00) Moscow+03 - Omsk', value: 'Asia/Omsk' },
- { text: '(GMT+06:00) Thimphu', value: 'Asia/Thimphu' },
- { text: '(GMT+06:00) Vostok', value: 'Antarctica/Vostok' },
- { text: '(GMT+06:30) Cocos', value: 'Indian/Cocos' },
- { text: '(GMT+06:30) Rangoon', value: 'Asia/Yangon' },
- { text: '(GMT+07:00) Bangkok', value: 'Asia/Bangkok' },
- { text: '(GMT+07:00) Christmas', value: 'Indian/Christmas' },
- { text: '(GMT+07:00) Davis', value: 'Antarctica/Davis' },
- { text: '(GMT+07:00) Hanoi', value: 'Asia/Saigon' },
- { text: '(GMT+07:00) Hovd', value: 'Asia/Hovd' },
- { text: '(GMT+07:00) Jakarta', value: 'Asia/Jakarta' },
- { text: '(GMT+07:00) Moscow+04 - Krasnoyarsk', value: 'Asia/Krasnoyarsk' },
- { text: '(GMT+08:00) Brunei', value: 'Asia/Brunei' },
- { text: '(GMT+08:00) China Time - Beijing', value: 'Asia/Shanghai' },
- { text: '(GMT+08:00) Choibalsan', value: 'Asia/Choibalsan' },
- { text: '(GMT+08:00) Hong Kong', value: 'Asia/Hong_Kong' },
- { text: '(GMT+08:00) Kuala Lumpur', value: 'Asia/Kuala_Lumpur' },
- { text: '(GMT+08:00) Macau', value: 'Asia/Macau' },
- { text: '(GMT+08:00) Makassar', value: 'Asia/Makassar' },
- { text: '(GMT+08:00) Manila', value: 'Asia/Manila' },
- { text: '(GMT+08:00) Moscow+05 - Irkutsk', value: 'Asia/Irkutsk' },
- { text: '(GMT+08:00) Singapore', value: 'Asia/Singapore' },
- { text: '(GMT+08:00) Taipei', value: 'Asia/Taipei' },
- { text: '(GMT+08:00) Ulaanbaatar', value: 'Asia/Ulaanbaatar' },
- { text: '(GMT+08:00) Western Time - Perth', value: 'Australia/Perth' },
- { text: '(GMT+08:30) Pyongyang', value: 'Asia/Pyongyang' },
- { text: '(GMT+09:00) Dili', value: 'Asia/Dili' },
- { text: '(GMT+09:00) Jayapura', value: 'Asia/Jayapura' },
- { text: '(GMT+09:00) Moscow+06 - Yakutsk', value: 'Asia/Yakutsk' },
- { text: '(GMT+09:00) Palau', value: 'Pacific/Palau' },
- { text: '(GMT+09:00) Seoul', value: 'Asia/Seoul' },
- { text: '(GMT+09:00) Tokyo', value: 'Asia/Tokyo' },
- { text: '(GMT+09:30) Central Time - Darwin', value: 'Australia/Darwin' },
- { text: '(GMT+10:00) Dumont D\'Urville', value: 'Antarctica/DumontDUrville' },
- { text: '(GMT+10:00) Eastern Time - Brisbane', value: 'Australia/Brisbane' },
- { text: '(GMT+10:00) Guam', value: 'Pacific/Guam' },
- { text: '(GMT+10:00) Moscow+07 - Vladivostok', value: 'Asia/Vladivostok' },
- { text: '(GMT+10:00) Port Moresby', value: 'Pacific/Port_Moresby' },
- { text: '(GMT+10:00) Truk', value: 'Pacific/Chuuk' },
- { text: '(GMT+10:30) Central Time - Adelaide', value: 'Australia/Adelaide' },
- { text: '(GMT+11:00) Casey', value: 'Antarctica/Casey' },
- { text: '(GMT+11:00) Eastern Time - Hobart', value: 'Australia/Hobart' },
- { text: '(GMT+11:00) Eastern Time - Melbourne, Sydney', value: 'Australia/Sydney' },
- { text: '(GMT+11:00) Efate', value: 'Pacific/Efate' },
- { text: '(GMT+11:00) Guadalcanal', value: 'Pacific/Guadalcanal' },
- { text: '(GMT+11:00) Kosrae', value: 'Pacific/Kosrae' },
- { text: '(GMT+11:00) Moscow+08 - Magadan', value: 'Asia/Magadan' },
- { text: '(GMT+11:00) Norfolk', value: 'Pacific/Norfolk' },
- { text: '(GMT+11:00) Noumea', value: 'Pacific/Noumea' },
- { text: '(GMT+11:00) Ponape', value: 'Pacific/Pohnpei' },
- { text: '(GMT+12:00) Funafuti', value: 'Pacific/Funafuti' },
- { text: '(GMT+12:00) Kwajalein', value: 'Pacific/Kwajalein' },
- { text: '(GMT+12:00) Majuro', value: 'Pacific/Majuro' },
- { text: '(GMT+12:00) Moscow+09 - Petropavlovsk-Kamchatskiy', value: 'Asia/Kamchatka' },
- { text: '(GMT+12:00) Nauru', value: 'Pacific/Nauru' },
- { text: '(GMT+12:00) Tarawa', value: 'Pacific/Tarawa' },
- { text: '(GMT+12:00) Wake', value: 'Pacific/Wake' },
- { text: '(GMT+12:00) Wallis', value: 'Pacific/Wallis' },
- { text: '(GMT+13:00) Auckland', value: 'Pacific/Auckland' },
- { text: '(GMT+13:00) Enderbury', value: 'Pacific/Enderbury' },
- { text: '(GMT+13:00) Fakaofo', value: 'Pacific/Fakaofo' },
- { text: '(GMT+13:00) Fiji', value: 'Pacific/Fiji' },
- { text: '(GMT+13:00) Tongatapu', value: 'Pacific/Tongatapu' },
- { text: '(GMT+14:00) Apia', value: 'Pacific/Apia' },
- { text: '(GMT+14:00) Kiritimati', value: 'Pacific/Kiritimati' }
- ]
- }
- },
- computed: {
- currentUserId: get('user/id')
- },
- methods: {
- /**
- * Activate a user (if previously deactivated)
- */
- async activateUser () {
- this.$store.commit(`loadingStart`, 'admin-users-activate')
- const resp = await this.$apollo.mutate({
- mutation: gql`
- mutation ($id: Int!) {
- users {
- activate(id: $id) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- }
- }
- }
- `,
- variables: {
- id: this.user.id
- }
- })
- if (_.get(resp, 'data.users.activate.responseResult.succeeded', false)) {
- this.$store.commit('showNotification', {
- style: 'success',
- message: this.$t('admin:users.userActivateSuccess'),
- icon: 'check'
- })
- this.user.isActive = true
- } else {
- this.$store.commit('showNotification', {
- style: 'red',
- message: _.get(resp, 'data.users.activate.responseResult.message', 'An unexpected error occurred.'),
- icon: 'warning'
- })
- }
- this.$store.commit(`loadingStop`, 'admin-users-activate')
- },
- /**
- * Deactivate a currently active user
- */
- async deactivateUser () {
- this.$store.commit(`loadingStart`, 'admin-users-deactivate')
- const resp = await this.$apollo.mutate({
- mutation: gql`
- mutation ($id: Int!) {
- users {
- deactivate(id: $id) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- }
- }
- }
- `,
- variables: {
- id: this.user.id
- }
- })
- if (_.get(resp, 'data.users.deactivate.responseResult.succeeded', false)) {
- this.$store.commit('showNotification', {
- style: 'success',
- message: this.$t('admin:users.userDeactivateSuccess'),
- icon: 'check'
- })
- this.user.isActive = false
- } else {
- this.$store.commit('showNotification', {
- style: 'red',
- message: _.get(resp, 'data.users.deactivate.responseResult.message', 'An unexpected error occurred.'),
- icon: 'warning'
- })
- }
- this.$store.commit(`loadingStop`, 'admin-users-deactivate')
- },
- /**
- * Delete a user
- */
- deleteUserConfirm () {
- this.deleteUserDialog = true
- this.deleteReplaceUser = {
- id: this.currentUserId,
- name: this.$store.get('user/name'),
- email: this.$store.get('user/email')
- }
- },
- async deleteUser () {
- this.$store.commit(`loadingStart`, 'admin-users-delete')
- const resp = await this.$apollo.mutate({
- mutation: gql`
- mutation ($id: Int!, $replaceId: Int!) {
- users {
- delete(id: $id, replaceId: $replaceId) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- }
- }
- }
- `,
- variables: {
- id: this.user.id,
- replaceId: this.deleteReplaceUser.id
- }
- })
- if (_.get(resp, 'data.users.delete.responseResult.succeeded', false)) {
- this.$store.commit('showNotification', {
- style: 'success',
- message: this.$t('admin:users.userDeleteSuccess'),
- icon: 'check'
- })
- this.$router.push('/users')
- } else {
- this.$store.commit('showNotification', {
- style: 'red',
- message: _.get(resp, 'data.users.delete.responseResult.message', 'An unexpected error occurred.'),
- icon: 'warning'
- })
- }
- this.deleteUserDialog = false
- this.$store.commit(`loadingStop`, 'admin-users-delete')
- },
- assignDeleteUser (selUsr) {
- if (selUsr.id === this.user.id) {
- this.$store.commit('showNotification', {
- style: 'red',
- message: 'You cannot select the account you\'re about to delete!',
- icon: 'warning'
- })
- } else if (selUsr.id === 2) {
- this.$store.commit('showNotification', {
- style: 'red',
- message: 'You cannot use the guest account for this operation.',
- icon: 'warning'
- })
- } else {
- this.deleteReplaceUser = selUsr
- }
- },
- /**
- * Update a user
- */
- async updateUser() {
- this.$store.commit(`loadingStart`, 'admin-users-update')
- const resp = await this.$apollo.mutate({
- mutation: gql`
- mutation ($id: Int!, $email: String, $name: String, $newPassword: String, $groups: [Int], $location: String, $jobTitle: String, $timezone: String) {
- users {
- update(id: $id, email: $email, name: $name, newPassword: $newPassword, groups: $groups, location: $location, jobTitle: $jobTitle, timezone: $timezone) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- }
- }
- }
- `,
- variables: {
- id: this.user.id,
- email: this.user.email,
- name: this.user.name,
- newPassword: this.newPassword,
- groups: _.map(this.user.groups, 'id'),
- location: this.user.location,
- jobTitle: this.user.jobTitle,
- timezone: this.user.timezone
- }
- })
- this.newPassword = ''
- if (_.get(resp, 'data.users.update.responseResult.succeeded', false)) {
- this.$store.commit('showNotification', {
- style: 'success',
- message: this.$t('admin:users.userUpdateSuccess'),
- icon: 'check'
- })
- this.$router.push('/users')
- } else {
- this.$store.commit('showNotification', {
- style: 'red',
- message: _.get(resp, 'data.users.update.responseResult.message', 'An unexpected error occurred.'),
- icon: 'warning'
- })
- }
- this.$store.commit(`loadingStop`, 'admin-users-update')
- },
- /**
- * Focus an input after delay
- */
- focusField (ipt) {
- this.$nextTick(() => {
- _.delay(() => {
- this.$refs[ipt].focus()
- }, 200)
- })
- },
- /**
- * Assign group to user
- */
- assignGroup() {
- if (_.some(this.user.groups, ['id', this.newGroup])) {
- this.$store.commit('showNotification', {
- message: this.$t('admin:users.userAlreadyAssignedToGroup'),
- style: 'error',
- icon: 'alert'
- })
- } else {
- this.user.groups.push(_.find(this.groups, ['id', this.newGroup]))
- this.newGroup = 0
- }
- },
- /**
- * Unassign group from user
- */
- unassignGroup(gid) {
- this.user.groups = _.reject(this.user.groups, ['id', gid])
- },
- /**
- * Manually set user as verified
- */
- async verifyUser () {
- this.$store.commit(`loadingStart`, 'admin-users-verify')
- const resp = await this.$apollo.mutate({
- mutation: gql`
- mutation ($id: Int!) {
- users {
- verify(id: $id) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- }
- }
- }
- `,
- variables: {
- id: this.user.id
- }
- })
- if (_.get(resp, 'data.users.verify.responseResult.succeeded', false)) {
- this.$store.commit('showNotification', {
- style: 'success',
- message: this.$t('admin:users.userVerifySuccess'),
- icon: 'check'
- })
- this.user.isVerified = true
- } else {
- this.$store.commit('showNotification', {
- style: 'red',
- message: _.get(resp, 'data.users.verify.responseResult.message', 'An unexpected error occurred.'),
- icon: 'warning'
- })
- }
- this.$store.commit(`loadingStop`, 'admin-users-verify')
- },
- /**
- * Toggle 2FA State
- */
- async toggle2FA () {
- this.$store.commit(`loadingStart`, 'admin-users-toggle2fa')
- if (this.user.tfaIsActive) {
- const resp = await this.$apollo.mutate({
- mutation: gql`
- mutation ($id: Int!) {
- users {
- disableTFA(id: $id) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- }
- }
- }
- `,
- variables: {
- id: this.user.id
- }
- })
- if (_.get(resp, 'data.users.disableTFA.responseResult.succeeded', false)) {
- this.$store.commit('showNotification', {
- style: 'success',
- message: this.$t('admin:users.userTFADisableSuccess'),
- icon: 'check'
- })
- this.user.tfaIsActive = false
- } else {
- this.$store.commit('showNotification', {
- style: 'red',
- message: _.get(resp, 'data.users.disableTFA.responseResult.message', 'An unexpected error occurred.'),
- icon: 'warning'
- })
- }
- } else {
- const resp = await this.$apollo.mutate({
- mutation: gql`
- mutation ($id: Int!) {
- users {
- enableTFA(id: $id) {
- responseResult {
- succeeded
- errorCode
- slug
- message
- }
- }
- }
- }
- `,
- variables: {
- id: this.user.id
- }
- })
- if (_.get(resp, 'data.users.enableTFA.responseResult.succeeded', false)) {
- this.$store.commit('showNotification', {
- style: 'success',
- message: this.$t('admin:users.userTFAEnableSuccess'),
- icon: 'check'
- })
- this.user.tfaIsActive = true
- } else {
- this.$store.commit('showNotification', {
- style: 'red',
- message: _.get(resp, 'data.users.enableTFA.responseResult.message', 'An unexpected error occurred.'),
- icon: 'warning'
- })
- }
- }
- this.$store.commit(`loadingStop`, 'admin-users-toggle2fa')
- }
- },
- apollo: {
- user: {
- query: gql`
- query ($id: Int!) {
- users {
- single(id: $id) {
- id
- name
- email
- providerKey
- providerName
- providerId
- providerIs2FACapable
- location
- jobTitle
- timezone
- isSystem
- isActive
- isVerified
- createdAt
- updatedAt
- lastLoginAt
- tfaIsActive
- groups {
- id
- name
- }
- }
- }
- }
- `,
- variables() {
- return {
- id: _.toSafeInteger(this.$route.params.id)
- }
- },
- fetchPolicy: 'network-only',
- update: (data) => data.users.single,
- watchLoading (isLoading) {
- this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-users-refresh')
- }
- },
- groups: {
- query: groupsQuery,
- fetchPolicy: 'network-only',
- update: (data) => data.groups.list,
- watchLoading (isLoading) {
- this.$store.commit(`loading${isLoading ? 'Start' : 'Stop'}`, 'admin-groups-refresh')
- }
- }
- }
- }
- </script>
- <style lang='scss'>
- </style>
|