1234567891011121314151617181920212223242526272829303132333435363738 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import type { Role } from '#shared/graphql/types.ts'
- import { i18n } from '#shared/i18n.ts'
- import type { ActivityMessageBuilder } from '../types.ts'
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- const path = (metaObject: Role) => {
- return '#'
- }
- const messageText = (
- type: string,
- authorName: string,
- metaObject?: Role,
- ): Maybe<string> => {
- if (!metaObject) {
- return i18n.t('You can no longer see the role.')
- }
- const objectTitle = metaObject.name || '-'
- switch (type) {
- case 'create':
- return i18n.t('%s created role |%s|', authorName, objectTitle)
- case 'update':
- return i18n.t('%s updated role |%s|', authorName, objectTitle)
- default:
- return null
- }
- }
- export default <ActivityMessageBuilder>{
- messageText,
- path,
- model: 'Role',
- }
|