user.ts 343 B

12345678910111213
  1. // Copyright (C) 2012-2025 Zammad Foundation, https://zammad-foundation.org/
  2. import User from '../entitites/User.vue'
  3. import type { QuickSearchPlugin } from '../types.ts'
  4. export default <QuickSearchPlugin>{
  5. name: 'User',
  6. component: User,
  7. priority: 200,
  8. searchResultKey: 'quickSearchUsers',
  9. searchResultLabel: __('Found users'),
  10. }